Skip to content

Commit

Permalink
chore: Fixed conflicts with main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ape-fede committed Oct 19, 2022
2 parents 3aeb610 + 5246a95 commit 6614fa9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ape.swap/uikit",
"version": "1.3.31-alpha.7",
"version": "1.3.34",
"description": "Set of UI components for apeswap projects",
"main": "dist/index.cjs.js",
"resolutions": {
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 @@ -426,7 +426,7 @@ it("renders correctly", () => {
</a>
<a
class="sc-kLgnNl iobZJR"
href="https://t.me/ape_swap"
href="https://discord.gg/apeswap"
rel="noopener noreferrer"
target="_blank"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const supportLinks = [
},
{
label: "Discord",
href: "https://discord.com/invite/ApeSwapOfficial",
href: "https://discord.gg/apeswap",
},
{
label: "Tokenomics",
Expand Down
6 changes: 2 additions & 4 deletions src/widgets/Navbar/MobileNavMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,11 @@ const MobileNavMenu: React.FC<MobileNavMenuProps> = ({
onClick={() => trackClick(track, event, position, chainId, "telegram", "https://t.me/ape_swap")}
/>
</StyledLink>
<StyledLink href="https://t.me/ape_swap" target="_blank" rel="noopener noreferrer">
<StyledLink href="https://discord.gg/apeswap" target="_blank" rel="noopener noreferrer">
<DiscordIcon
color="white3"
fill={iconFillColor}
onClick={() =>
trackClick(track, event, position, chainId, "discord", "https://discord.com/invite/ApeSwapOfficial")
}
onClick={() => trackClick(track, event, position, chainId, "discord", "https://discord.gg/apeswap")}
/>
</StyledLink>
</div>
Expand Down
6 changes: 2 additions & 4 deletions src/widgets/Navbar/SubNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,11 @@ const SubNavbar: React.FC<SubNavbarProps> = ({
onClick={() => trackClick(track, event, position, chainId, "telegram", "https://t.me/ape_swap")}
/>
</StyledLink>
<StyledLink href="https://discord.com/invite/ApeSwap" target="_blank" rel="noopener noreferrer">
<StyledLink href="https://discord.gg/apeswap" target="_blank" rel="noopener noreferrer">
<DiscordIcon
color="white3"
fill={iconFillColor}
onClick={() =>
trackClick(track, event, position, chainId, "discord", "https://discord.com/invite/ApeSwapOfficial")
}
onClick={() => trackClick(track, event, position, chainId, "discord", "https://discord.gg/apeswap")}
/>
</StyledLink>
</Flex>
Expand Down

0 comments on commit 6614fa9

Please sign in to comment.