From c9e363a5f0a86cbc514ac909d7e03b8e841f498a Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi Date: Sat, 3 Aug 2019 22:05:29 +0900 Subject: [PATCH] feat: update suggestion modifiers --- web/src/components/Suggestion.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/web/src/components/Suggestion.js b/web/src/components/Suggestion.js index 9973ece..f4df7dc 100644 --- a/web/src/components/Suggestion.js +++ b/web/src/components/Suggestion.js @@ -15,17 +15,14 @@ function modifyWord(word) { (word) => `${capitalize(word)}box`, (word) => `Insta${lower(word)}`, (word) => `${capitalize(word)}Hub`, - (word) => `Semantic ${capitalize(word)}`, (word) => `Cloud${capitalize(word)}`, - (word) => `Deep${capitalize(word)}`, + (word) => `quick${lower(word)}`, (word) => `${capitalize(word)}gram`, (word) => `${capitalize(word)}base`, (word) => `${capitalize(word)}API`, (word) => `${capitalize(word)}note`, (word) => `In${capitalize(word)}`, - (word) => `Under${lower(word)}`, (word) => `Uni${lower(word)}`, - (word) => `${capitalize(word)}mind`, ] return modifiers[Math.floor(Math.random() * modifiers.length)](word) }