From 22aefaac01d7121fa81a08aedcad5ea3cfee0e37 Mon Sep 17 00:00:00 2001 From: TheRaiwy Date: Wed, 27 May 2026 14:53:40 +0300 Subject: [PATCH] feat: add BYN currency --- frontend/src/components/PiggyBankForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/PiggyBankForm.tsx b/frontend/src/components/PiggyBankForm.tsx index 478768e..87c6a2a 100644 --- a/frontend/src/components/PiggyBankForm.tsx +++ b/frontend/src/components/PiggyBankForm.tsx @@ -15,6 +15,7 @@ const currencies = [ { value: 'EUR', label: '€ EUR' }, { value: 'RUB', label: '₽ RUB' }, { value: 'GBP', label: '£ GBP' }, + { value: 'BYN', label: 'Br BYN' }, ] export function PiggyBankForm({ categories, onSubmit, onCancel }: PiggyBankFormProps) {