diff --git a/apps/web/components/admin/settings/index.tsx b/apps/web/components/admin/settings/index.tsx index 4bd92981..59e5b9ca 100644 --- a/apps/web/components/admin/settings/index.tsx +++ b/apps/web/components/admin/settings/index.tsx @@ -813,6 +813,10 @@ const Settings = (props: SettingsProps) => { newSettings.paymentMethod || PAYMENT_METHOD_NONE } options={[ + { + label: SITE_SETTINGS_PAYMENT_METHOD_NONE_LABEL, + value: PAYMENT_METHOD_NONE, + }, { label: capitalize( PAYMENT_METHOD_STRIPE.toLowerCase(), @@ -857,9 +861,6 @@ const Settings = (props: SettingsProps) => { }), ) } - placeholderMessage={ - SITE_SETTINGS_PAYMENT_METHOD_NONE_LABEL - } disabled={!newSettings.currencyISOCode} />