Skip to content

Commit

Permalink
Merge pull request #82 from tgxn/develop
Browse files Browse the repository at this point in the history
oops
  • Loading branch information
tgxn authored Oct 31, 2023
2 parents 4abce85 + b3c41fa commit 3bc6221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const queryClient = new QueryClient();
export default function App() {
return (
<QueryClientProvider client={queryClient}>
<ReactQueryDevtools initialIsOpen={false} />
<ReactQueryDevtools initialIsOpen={false} buttonPosition="bottom-left" />

<Provider store={AppStore}>
<PageRouter />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export default function LoginForm() {
<List sx={{ width: "100%" }}>
{users.map((user, index) => {
// @TODO when Lemmy adds `expires_at` to the JWT, we can use this to check if the session is expired
const jwt = jwt_decode(user.jwt, { complete: true });
// const jwt = jwt_decode(user.jwt, { complete: true });

return (
<ListItem
Expand Down

0 comments on commit 3bc6221

Please sign in to comment.