Skip to content

Commit

Permalink
Change component name
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Nov 21, 2023
1 parent 31f7034 commit 5b98b68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/abclaunch/src/pages/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Divider, HStack, Text, VStack, Image } from '@chakra-ui/react';
import { useNavigate } from 'react-router-dom';
import ChooseOption from '../components/ChooseOption';
import NotOptimizedModal from '../../../../pkg/commons-ui/src/components/NotOptimizedModal';
import NotOptimizedModal from 'commons-ui/src/components/MobileOptimizationWarningModal';

export default function Launchpad() {
const navigate = useNavigate();
Expand Down
2 changes: 1 addition & 1 deletion apps/abcswap/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Button, Divider, HStack, Image, Stack, Text, VStack } from '@chakra-ui/
import { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { DaoNameInput, useIsRegisteredDaoWithApp } from 'dao-utils';
import NotOptimizedModal from '../../../../pkg/commons-ui/src/components/NotOptimizedModal';
import NotOptimizedModal from 'commons-ui/src/components/MobileOptimizationWarningModal';

export default function Home() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import { useEffect } from "react"


export default function NotOptimizedModal() {
export default function MobileOptimizationWarningModal() {

const { isOpen, onOpen, onClose } = useDisclosure()
const isMobile = useBreakpointValue({ base: true, md: false })
Expand Down

0 comments on commit 5b98b68

Please sign in to comment.