-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add the transfer buttons to top navigation #1128
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally and it's working really well. Awesome work!!! 🥇 Just left one nitpick comment
@@ -4,8 +4,8 @@ import { defaultAccountAtom, disconnectAccountAtom } from "atoms/accounts"; | |||
import clsx from "clsx"; | |||
import { useAtomValue } from "jotai"; | |||
import { useLocation, useNavigate } from "react-router-dom"; | |||
import { DisconnectAccountIcon } from "./DisconnectAccountIcon"; | |||
import { SwitchAccountIcon } from "./SwitchAccountIcon"; | |||
import { DisconnectAccountIcon } from "../Icons/DisconnectAccountIcon"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once they're not in the same folder, can we use App/Icons/DisconnectAccountIcon
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, good observation! actually, I'll move it to the same folder as I saw this pattern on other features as well :)
Add the transfer buttons to top navigation
And improve the responsiveness to the
<AppHeader>
that contains the burger, the logo, the new buttons and so on