|
@@ -4,7 +4,9 @@
|
|
|
|
|
|
let prompts = [];
|
|
|
|
|
|
- $: prompts = suggestionPrompts;
|
|
|
+ $: prompts = suggestionPrompts
|
|
|
+ .reduce((acc, current) => [...acc, ...[current]], [])
|
|
|
+ .sort(() => Math.random() - 0.5);
|
|
|
// suggestionPrompts.length <= 4
|
|
|
// ? suggestionPrompts
|
|
|
// : suggestionPrompts.sort(() => Math.random() - 0.5).slice(0, 4);
|