From baefcacda2dbb06c364ab6cfbfd876c4fa3949c5 Mon Sep 17 00:00:00 2001 From: Martin Caspersen Date: Mon, 28 Oct 2024 10:39:05 +0100 Subject: [PATCH] chore: add DKK currency --- src/store/state/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/store/state/types.ts b/src/store/state/types.ts index 99525d6..1714715 100644 --- a/src/store/state/types.ts +++ b/src/store/state/types.ts @@ -12,6 +12,7 @@ export const availableCurrencies = [ 'CAD', 'CHF', 'CNY', + 'DKK', 'SEK', 'NZD', 'MXN', @@ -35,6 +36,7 @@ export type AvailableCurrency = | 'CAD' | 'CHF' | 'CNY' + | 'DKK' | 'SEK' | 'NZD' | 'MXN'