From 227c00b3a04d6bb7371ca038ca4b657ad9e92f0f Mon Sep 17 00:00:00 2001 From: Gerhard Scheikl Date: Sat, 9 May 2026 16:21:55 +0200 Subject: [PATCH] fix(settings): place save banner next to Save button --- app/routes/app.settings.tsx | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/app/routes/app.settings.tsx b/app/routes/app.settings.tsx index f6e1756..a563c1b 100644 --- a/app/routes/app.settings.tsx +++ b/app/routes/app.settings.tsx @@ -198,17 +198,6 @@ export default function SettingsRoute() { - {actionData?.ok && ( - - Your changes are now live and will be used for the next invoice. - - )} - {actionData && !actionData.ok && ( - - Some fields below need attention before settings can be saved. - - )} -
@@ -415,11 +404,23 @@ export default function SettingsRoute() { - - {isSaving ? Saving… : null} - - Save settings - + + {actionData?.ok && ( + + Your changes are now live and will be used for the next invoice. + + )} + {actionData && !actionData.ok && ( + + Some fields below need attention before settings can be saved. + + )} + + {isSaving ? Saving… : null} + + Save settings + +