From b4170e0a66dd81b392435c7ba21da7000b5e3563 Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Wed, 31 Jul 2024 15:25:11 +0200 Subject: [PATCH] Fix borked imports --- .../app/snaps/snap-ui-renderer/components/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/components/app/snaps/snap-ui-renderer/components/index.ts b/ui/components/app/snaps/snap-ui-renderer/components/index.ts index fc511df51f40..3a84e5a67a40 100644 --- a/ui/components/app/snaps/snap-ui-renderer/components/index.ts +++ b/ui/components/app/snaps/snap-ui-renderer/components/index.ts @@ -8,6 +8,7 @@ import { row } from './row'; import { address } from './address'; import { copyable } from './copyable'; import { button } from './button'; +import { fileInput } from './file-input'; import { form } from './form'; import { input } from './input'; import { bold } from './bold'; @@ -16,6 +17,8 @@ import { link } from './link'; import { field } from './field'; import { dropdown } from './dropdown'; import { value } from './value'; +import { checkbox } from './checkbox'; +import { tooltip } from './tooltip'; import { card } from './card'; export const COMPONENT_MAPPING = { @@ -29,6 +32,7 @@ export const COMPONENT_MAPPING = { Row: row, Address: address, Button: button, + FileInput: fileInput, Form: form, Input: input, Bold: bold, @@ -37,6 +41,7 @@ export const COMPONENT_MAPPING = { Field: field, Dropdown: dropdown, Value: value, - Cell: cell, + Checkbox: checkbox, + Tooltip: tooltip, Card: card, };