fix: remove connect wallet story because of web3 error

This commit is contained in:
RadoslavDimchev 2023-10-02 20:05:05 +03:00
parent efae345225
commit 483c9985b8
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
import type { Meta, StoryObj } from '@storybook/react'
import ConnectWallet from './ConnectWallet'
const meta = {
title: 'ValidatorOnboarding/ConnectWallet',
component: ConnectWallet,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof ConnectWallet>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}