Skip to content

Commit

Permalink
fix(sentry)remove spaces from users me fields
Browse files Browse the repository at this point in the history
  • Loading branch information
iacopolea committed Dec 11, 2023
1 parent bc22889 commit 462240a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/PageTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const PageTemplate = ({ children }: { children: React.ReactNode }) => {
error,
isLoading,
} = useGetUsersMeQuery({
fields: "id, email, username, wp_user_id, role",
fields: "id,email,username,wp_user_id,role",
});
if (isLoading) {
return <div>Loading...</div>;
Expand Down

0 comments on commit 462240a

Please sign in to comment.