Skip to content

Commit

Permalink
chore: Update navbar ape URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ape-fede committed Jun 19, 2023
1 parent 33a7139 commit 6590d42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ape.swap/uikit",
"version": "1.3.62",
"version": "1.3.63",
"description": "Set of UI components for apeswap projects",
"main": "dist/index.cjs.js",
"resolutions": {
Expand All @@ -16,7 +16,7 @@
"scripts": {
"build": "rm -rf ./dist && rollup -c && tsc -d --emitDeclarationOnly --declarationDir dist",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/widgets/menu.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ it("renders correctly", () => {
<a
aria-label="Apeswap home page"
class="sc-hKgJUU dKlpup"
href="/"
href="https://apeswap.finance/"
>
<svg
class="sc-gsTEea fQWPxo"
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const Navbar: React.FC<NavProps> = ({
isPushed={isPushed}
togglePush={() => setIsPushed((prevState: boolean) => !prevState)}
isDark={isDark}
href={homeLink?.href ?? "/"}
href={homeLink?.href ?? "https://apeswap.finance/"}
/>
{!isMobile && (
<Flex sx={styles.rightMenu}>
Expand Down

0 comments on commit 6590d42

Please sign in to comment.