diff --git a/src/components/BankDetails/CurrencySelector/Options.tsx b/src/components/BankDetails/CurrencyOptions.tsx similarity index 100% rename from src/components/BankDetails/CurrencySelector/Options.tsx rename to src/components/BankDetails/CurrencyOptions.tsx diff --git a/src/components/BankDetails/CurrencySelector/CurrencySelector.tsx b/src/components/BankDetails/CurrencySelector.tsx similarity index 97% rename from src/components/BankDetails/CurrencySelector/CurrencySelector.tsx rename to src/components/BankDetails/CurrencySelector.tsx index 83f70af7f2..a1304053f6 100644 --- a/src/components/BankDetails/CurrencySelector/CurrencySelector.tsx +++ b/src/components/BankDetails/CurrencySelector.tsx @@ -3,7 +3,7 @@ import { useState } from "react"; import { WiseCurrency } from "types/aws"; import { DrawerIcon } from "components/Icon"; import { Label } from "components/form"; -import Options from "./Options"; +import Options from "./CurrencyOptions"; export type Currency = { code: string; diff --git a/src/components/BankDetails/CurrencySelector/index.ts b/src/components/BankDetails/CurrencySelector/index.ts deleted file mode 100644 index 11a18e7b0d..0000000000 --- a/src/components/BankDetails/CurrencySelector/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from "./CurrencySelector";