File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
app/(store)/stores/register/_components/RegisterFunnel/_components/TagStep Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Chip } from "@/components/ui/Chip";
77import { Spacer } from "@/components/ui/Spacer" ;
88import { HStack , VStack } from "@/components/ui/Stack" ;
99import { Text } from "@/components/ui/Text" ;
10- import { type Tag } from "@/constants /tag.constants " ;
10+ import { type Tag } from "@/types /tag.types " ;
1111
1212import { useTagSelection } from "./_hooks" ;
1313
Original file line number Diff line number Diff line change 1- export type Tag = {
2- iconUrl : string ;
3- name : string ;
4- label : string ;
5- } ;
1+ import { type Tag } from "@/types/tag.types" ;
62
7- export const ATMOSPHERE_TAGS = [
3+ export const ATMOSPHERE_TAGS : Tag [ ] = [
84 {
95 iconUrl : "/images/tags/OLD_STORE_MOOD.png" ,
106 name : "OLD_STORE_MOOD" ,
@@ -47,7 +43,7 @@ export const ATMOSPHERE_TAGS = [
4743 } ,
4844] ;
4945
50- export const UTILITY_TAGS = [
46+ export const UTILITY_TAGS : Tag [ ] = [
5147 {
5248 iconUrl : "/images/tags/GROUP_RESERVATION.png" ,
5349 name : "GROUP_RESERVATION" ,
Original file line number Diff line number Diff line change 1+ export type Tag = {
2+ iconUrl : string ;
3+ name : string ;
4+ label : string ;
5+ } ;
You can’t perform that action at this time.
0 commit comments