diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/CurrencyCode.ts b/packages/twenty-front/src/modules/object-record/record-field/types/CurrencyCode.ts index 419be560ec61..e71b8a6744b5 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/types/CurrencyCode.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/types/CurrencyCode.ts @@ -7,6 +7,8 @@ export enum CurrencyCode { HKD = 'HKD', JPY = 'JPY', USD = 'USD', + NOK = 'NOK', + SEK = 'SEK', MAD = 'MAD', QAR = 'QAR', AED = 'AED', diff --git a/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldCurrencyCodes.ts b/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldCurrencyCodes.ts index fa95f111e408..487ff6e04489 100644 --- a/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldCurrencyCodes.ts +++ b/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldCurrencyCodes.ts @@ -4,6 +4,7 @@ import { IconCurrencyDollar, IconCurrencyEuro, IconCurrencyFrank, + IconCurrencyKroneSwedish, IconCurrencyPound, IconCurrencyRiyal, IconCurrencyYen, @@ -48,6 +49,14 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record< label: 'Hong Kong dollar', Icon: IconCurrencyDollar, }, + NOK: { + label: 'Norwegian krone', + Icon: IconCurrencyKroneSwedish, + }, + SEK: { + label: 'Swedish krona', + Icon: IconCurrencyKroneSwedish, + }, MAD: { label: 'Moroccan dirham', Icon: IconCurrencyDirham, diff --git a/packages/twenty-ui/src/display/icon/components/TablerIcons.ts b/packages/twenty-ui/src/display/icon/components/TablerIcons.ts index ba3282c2a1bb..4067452b6edf 100644 --- a/packages/twenty-ui/src/display/icon/components/TablerIcons.ts +++ b/packages/twenty-ui/src/display/icon/components/TablerIcons.ts @@ -54,6 +54,7 @@ export { IconCurrencyDollar, IconCurrencyEuro, IconCurrencyFrank, + IconCurrencyKroneSwedish, IconCurrencyPound, IconCurrencyRiyal, IconCurrencyYen,