diff options
author | Chenyu Huang <itschenyu@gmail.com> | 2025-08-08 10:15:29 -0700 |
---|---|---|
committer | Chenyu Huang <itschenyu@gmail.com> | 2025-08-08 10:15:29 -0700 |
commit | 52637472e6dae1cf1ca49366f562d517501e6d5a (patch) | |
tree | d5a26b0542ea31ed176bc66e6433c05ec4d08d7f | |
parent | 9153474e592804150c33ff1d0b8886e4d00efaf5 (diff) | |
download | voidsky-52637472e6dae1cf1ca49366f562d517501e6d5a.tar.zst |
add missing import
-rw-r--r-- | src/screens/StarterPack/Wizard/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index c319193d3..a95174803 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -52,7 +52,7 @@ import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails' import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds' import {StepProfiles} from '#/screens/StarterPack/Wizard/StepProfiles' import {atoms as a, useTheme, web} from '#/alf' -import {Button, ButtonText} from '#/components/Button' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import * as Layout from '#/components/Layout' import {ListMaybePlaceholder} from '#/components/Lists' |