Skip to content

Commit

Permalink
activity logic
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiolalombardim authored and ashutoshpw committed Nov 25, 2024
1 parent cc61fc3 commit 909c6d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export const UserMovements: React.FC<{
}> = ({ proposalsCreated, cycleInfo, proposalsVoted, daoId, setShowActivity, showActivity }) => {
const [selectedTab, setSelectedTab] = React.useState(0)
const [filteredTransactions, setFilteredTransactions] = React.useState<TransferWithBN[] | undefined>()
const [showFullList, setShowFullList] = useState(false)
const { account } = useTezos()
const theme = useTheme()
const isMobileSmall = useMediaQuery(theme.breakpoints.down("sm"))
Expand Down
2 changes: 1 addition & 1 deletion src/modules/explorer/pages/User/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Box, Button, Grid, Theme, Typography, styled, useMediaQuery, useTheme } from "@material-ui/core"
import dayjs from "dayjs"
import { useDAOID } from "modules/explorer/pages/DAO/router"
import React, { useCallback, useEffect, useMemo } from "react"
import React, { useCallback, useEffect, useMemo, useState } from "react"
import { useHistory } from "react-router"
import { useAgoraTopic } from "services/agora/hooks/useTopic"
import { useTezos } from "services/beacon/hooks/useTezos"
Expand Down

0 comments on commit 909c6d0

Please sign in to comment.