Skip to content

Commit

Permalink
chore: update url calls
Browse files Browse the repository at this point in the history
  • Loading branch information
enesozturk committed Jan 15, 2024
1 parent ff7cdc0 commit 27a0ba0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/utils/PwaModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Link } from 'react-router-dom'
import BackgroundImage from '@/assets/IntroBackground.png'
import AndroidShareIcon from '@/components/general/Icon/AndroidShare'
import IShareIcon from '@/components/general/Icon/IShare'
import WalletConnectIcon from '@/components/general/Icon/WalletConnectIcon'
import { Modal } from '@/components/general/Modal/Modal'
import Text from '@/components/general/Text'
import { web3InboxURLs } from '@/constants/navigation'
import { pwaModalService } from '@/utils/store'

import './PwaModal.scss'
Expand Down Expand Up @@ -77,7 +77,7 @@ export const PwaModal: React.FC = () => {
</Text>
<Link
className="PwaModal__footer__link"
to="https://web3inbox.com"
to={web3InboxURLs.website}
target="_blank"
rel="noreferrer noopener"
>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/Login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import IntroContent from '@/components/general/IntroContent'
import Text from '@/components/general/Text'
import TransitionDiv from '@/components/general/TransitionDiv'
import Sidebar from '@/components/layout/Sidebar'
import { web3InboxURLs } from '@/constants/navigation'
import W3iContext from '@/contexts/W3iContext/context'

import './Login.scss'
Expand Down Expand Up @@ -62,7 +63,7 @@ const Login: React.FC = () => {
</Text>
<Link
className="Main__footer__link"
to="https://web3inbox.com"
to={web3InboxURLs.website}
target="_blank"
rel="noreferrer noopener"
>
Expand Down

0 comments on commit 27a0ba0

Please sign in to comment.