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",