From 26f28fc0bd2719112d8fbf4bdcfcd817fb7330fe Mon Sep 17 00:00:00 2001 From: abaicus Date: Tue, 26 Nov 2024 17:34:50 +0200 Subject: [PATCH] chore: remove unnecessary braces --- src/dashboard/components/template-cloud/AddSourceForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard/components/template-cloud/AddSourceForm.js b/src/dashboard/components/template-cloud/AddSourceForm.js index c89be7b86..9ef291af8 100644 --- a/src/dashboard/components/template-cloud/AddSourceForm.js +++ b/src/dashboard/components/template-cloud/AddSourceForm.js @@ -54,7 +54,7 @@ const AddSourceForm = ({ setSources, onCancel }) => { type="text" label={__('API URL', 'otter-blocks')} value={apiURL} - placeholder={'https://example.com/wp-json'} + placeholder="https://example.com/wp-json" disabled={isSaving} onChange={value => setApiURL(value)} />