From 04aeccfb69a73f47d4e28a32ff46b13365739b30 Mon Sep 17 00:00:00 2001 From: "sp.wack" <83104063+amanape@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:30:43 +0200 Subject: [PATCH] fix(frontend): Remove quotes from suggestion (#4921) --- frontend/src/utils/suggestions/repo-suggestions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/utils/suggestions/repo-suggestions.ts b/frontend/src/utils/suggestions/repo-suggestions.ts index ce1680ffcbb5..156931948d85 100644 --- a/frontend/src/utils/suggestions/repo-suggestions.ts +++ b/frontend/src/utils/suggestions/repo-suggestions.ts @@ -13,14 +13,14 @@ const KEY_2 = "Auto-merge Dependabot PRs"; const VALUE_2 = `Please add a GitHub action to this repository which automatically merges pull requests from Dependabot so long as the tests are passing.`; const KEY_3 = "Fix up my README"; -const VALUE_3 = `"Please look at the README and make the following improvements, if they make sense: +const VALUE_3 = `Please look at the README and make the following improvements, if they make sense: * correct any typos that you find * add missing language annotations on codeblocks * if there are references to other files or other sections of the README, turn them into links * make sure the readme has an h1 title towards the top * make sure any existing sections in the readme are appropriately separated with headings -If there are no obvious ways to improve the README, make at least one small change to make the wording clearer or friendlier"`; +If there are no obvious ways to improve the README, make at least one small change to make the wording clearer or friendlier`; const KEY_4 = "Clean up my dependencies"; const VALUE_4 = `Examine the dependencies of the current codebase. Make sure you can run the code and any tests.