Skip to content

Commit cb338c6

Browse files
committed
refactor(frontend): reorder NavLink attributes in dashboard layout
1 parent c0cab43 commit cb338c6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

apps/frontend/app/root.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ export default function App() {
135135
<OnboardingTour
136136
maw={400}
137137
tour={tourSteps}
138-
withNextButton={false}
139-
withPrevButton={false}
140138
started={isTourStarted}
141139
onOnboardingTourEnd={stopTour}
142140
onOnboardingTourClose={stopTour}

apps/frontend/app/routes/_dashboard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,10 +828,10 @@ const LinksGroup = ({
828828
const allLinks = (hasLinks ? links || [] : []).filter((s) => s !== undefined);
829829
const items = allLinks.map((link) => (
830830
<NavLink
831-
className={classes.link}
832831
to={link.link}
833832
key={link.label}
834833
onClick={toggle}
834+
className={classes.link}
835835
>
836836
{({ isActive }) => (
837837
<span style={isActive ? { textDecoration: "underline" } : undefined}>

0 commit comments

Comments
 (0)