Skip to content
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

feature: add back to the trading button to the header #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { useStore } from 'hooks'
import BreadcrumbsView from './BreadcrumbsView'
import OrgDropdown from './OrgDropdown'
import ProjectDropdown from './ProjectDropdown'
import { IconArrowRight } from '@supabase/ui'
// import FeedbackDropdown from './FeedbackDropdown'
// import HelpPopover from './HelpPopover'
// import NotificationsPopover from './NotificationsPopover'
Expand Down Expand Up @@ -68,6 +69,13 @@ const LayoutHeader = ({ customHeaderComponents, breadcrumbs = [], headerBorder =
{/* {IS_PLATFORM && <FeedbackDropdown />} */}
{/* {IS_PLATFORM && <NotificationsPopover />} */}
</div>
<a
href={window.location.origin + '/trading'}
className="flex text-xs items-center rounded-md border border-current p-2 my-1"
>
<span className="mr-1">Back to the trading page</span>
<IconArrowRight size={14} strokeWidth={2} />
</a>
</div>
// </div>
// </div>
Expand Down