diff --git a/README.md b/README.md index 368fffd..7e0a07f 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,5 @@ ## Domain [https://tarotsol.ai/](https://tarotsol.ai/) + +[https://regal-moonbeam-3e1c0e.netlify.app/game](https://regal-moonbeam-3e1c0e.netlify.app/game) diff --git a/src/components/common/currency-select/index.tsx b/src/components/common/currency-select/index.tsx index 7950949..236a5d8 100644 --- a/src/components/common/currency-select/index.tsx +++ b/src/components/common/currency-select/index.tsx @@ -1,23 +1,23 @@ import { Select, SelectTrigger, SelectItem, SelectValue, SelectContent } from '@/components/ui/select.tsx'; import { currencies, Currencies } from '@/constants/addresses'; -type ICurrencySelect = { +type CurrencySelect = { value: string; onValueChange: (value: Currencies) => void; }; -export const CurrencySelect = ({ value, onValueChange }: ICurrencySelect) => { +export const CurrencySelect = ({ value, onValueChange }: CurrencySelect) => { return (