fix(client): shit apiVersion everywhere
All checks were successful
Client CMS Check Build (NixCN CMS) TeamCity build finished
Backend Check Build (NixCN CMS) TeamCity build finished

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit was merged in pull request #10.
This commit is contained in:
2026-02-05 19:19:48 +08:00
committed by Asai Neko
parent 2c22c0ec5c
commit 7afc6ec25e
7 changed files with 17 additions and 4 deletions

View File

@@ -23,29 +23,34 @@ type Story = StoryObj<typeof meta>;
export const Prompt: Story = {
args: {
next: () => { },
},
};
export const MethodSelection: Story = {
render: () => <KycMethodSelectionDialogView onSubmit={async () => Promise.resolve()} />,
args: {
next: () => { },
},
};
export const Pending: Story = {
render: () => <KycPendingDialogView />,
args: {
next: () => { },
},
};
export const Success: Story = {
render: () => <KycSuccessDialogView />,
args: {
next: () => { },
},
};
export const Failed: Story = {
render: () => <KycFailedDialogView />,
args: {
next: () => { },
},
};