fix: remove connect from types

This commit is contained in:
RadoslavDimchev 2023-12-20 11:21:49 +02:00
parent fe829236eb
commit 06a2c5dc9b
4 changed files with 3 additions and 10 deletions

View File

@ -25,9 +25,3 @@ export const CreateTag: Story = {
selectedTag: 'create',
},
}
export const ConnectTag: Story = {
args: {
selectedTag: 'connect',
},
}

View File

@ -2,7 +2,7 @@ import NimbusLogo from '../Logos/NimbusLogo'
import TagContainer from './TagContainer'
type HeaderProps = {
selectedTag: 'pair' | 'create' | 'connect'
selectedTag: 'pair' | 'create'
}
const Header = ({ selectedTag }: HeaderProps) => {

View File

@ -4,7 +4,7 @@ import { AddSmallIcon, SwapIcon } from '@status-im/icons'
import { useNavigate } from 'react-router'
type TagContainerProps = {
selectedTag: 'pair' | 'create' | 'connect'
selectedTag: 'pair' | 'create'
}
const TAGS = [

View File

@ -43,8 +43,7 @@ const ConnectDevicePage = () => {
rightImageLogo={true}
>
<YStack space={'$3'}>
<Header selectedTag="connect" />
<Header selectedTag="pair" />
<Article className="content">
<Titles
title="Connect Device"