Skip to content

Commit

Permalink
Add missing text
Browse files Browse the repository at this point in the history
  • Loading branch information
synzen committed Dec 31, 2024
1 parent b6a73f5 commit 4fbadde
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,6 @@ export const UserFeedsTable: React.FC<Props> = ({ onSelectedFeedId }) => {

return (
<Tr
// role="button"
key={row.id}
_hover={{
bg: "gray.700",
Expand Down Expand Up @@ -741,14 +740,14 @@ export const UserFeedsTable: React.FC<Props> = ({ onSelectedFeedId }) => {
</Table>
</Box>
</Stack>
<Stack hidden>
<Stack hidden={isInitiallyLoading}>
<Center>
<Text color="whiteAlpha.600" fontSize="sm">
Viewed {flatData.length} of {data?.pages[0].total} feeds
</Text>
</Center>
<Button
disabled={!hasNextPage || isFetchingNextPage}
isDisabled={!hasNextPage || isFetchingNextPage}
isLoading={isFetchingNextPage}
onClick={() => fetchNextPage()}
mb={20}
Expand Down

0 comments on commit 4fbadde

Please sign in to comment.