Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tgxn committed Nov 4, 2023
1 parent 6714315 commit 0532e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tooltip.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const UserTooltip = ({ user, ...props }) => {

{/* List of actions taken on this user */}
<Box sx={{ display: "flex", flexDirection: "column", maxWidth: 500, justifyContent: "center", p: 1 }}>
{userModActionsLoading || (userModActionsFetching && <Typography>Loading...</Typography>)}
{(userModActionsLoading || userModActionsFetching) && <Typography>Loading...</Typography>}
{userModActionsError && <Typography>Error: {userModActionsError.message}</Typography>}
{userModActionsData && (
<List size={"sm"} variant="plain" sx={{ p: 0 }}>
Expand Down

0 comments on commit 0532e66

Please sign in to comment.