From 45a3cb4137641f4a835cf3c9b5d7273663a8b2c9 Mon Sep 17 00:00:00 2001 From: viown <48097677+viown@users.noreply.github.com> Date: Wed, 11 Jun 2025 01:09:55 +0300 Subject: [PATCH] Apply review feedback Co-authored-by: Bill Thornton --- .../features/plugins/components/NewRepositoryForm.tsx | 6 +++--- src/strings/en-us.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/dashboard/features/plugins/components/NewRepositoryForm.tsx b/src/apps/dashboard/features/plugins/components/NewRepositoryForm.tsx index 7cc2a6912..122d2c231 100644 --- a/src/apps/dashboard/features/plugins/components/NewRepositoryForm.tsx +++ b/src/apps/dashboard/features/plugins/components/NewRepositoryForm.tsx @@ -23,9 +23,9 @@ const NewRepositoryForm = ({ open, onClose, onAdd }: IProps) => { const data = Object.fromEntries(formData.entries()); const repository: RepositoryInfo = { - 'Name': data.Name?.toString(), - 'Url': data.Url?.toString(), - 'Enabled': true + Name: data.Name?.toString(), + Url: data.Url?.toString(), + Enabled: true }; onAdd(repository); diff --git a/src/strings/en-us.json b/src/strings/en-us.json index d312cc9c0..fa59b572e 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -213,7 +213,7 @@ "DeleteCustomImage": "Delete Custom Image", "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteDevicesConfirmation": "Are you sure you wish to delete all devices? All other sessions will be logged out. Devices will reappear the next time a user signs in.", - "DeleteRepositoryConfirmation": "Are you sure you'd like to delete this repository?", + "DeleteRepositoryConfirmation": "Are you sure you want to delete this repository?", "DeleteImage": "Delete Image", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteLyrics": "Delete lyrics",