Skip to content

Commit

Permalink
Merge pull request #676 from jembi/fix-apps-navbar
Browse files Browse the repository at this point in the history
Fix apps navbar
  • Loading branch information
drizzentic authored Sep 11, 2024
2 parents 02604de + a21e95e commit 3219fda
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const DIVIDER_MENU_ITEM: Readonly<Page> = Object.freeze({
link: ''
})

const pages: Page[] = [
let pages: Page[] = [
{name: 'DASHBOARD', link: '#!/dashboard'},
{name: 'TRANSACTIONS', link: '#!/transactions'},
{name: 'CHANNELS', link: '#!/channels'},
Expand Down Expand Up @@ -181,6 +181,7 @@ export default function OpenhimAppBar() {
})) }
: page
);
pages=updatedPages;
}

useEffect(() => {
Expand Down

0 comments on commit 3219fda

Please sign in to comment.