+
+ {adaptQuestionRecommends(data).map((question) => (
+
+ ))}
+
+
+
+
+
+ );
+}
diff --git a/src/chat/components/RefreshQuickQuestionButton/index.tsx b/src/chat/components/RefreshQuickQuestionButton/index.tsx
new file mode 100644
index 0000000..1a95442
--- /dev/null
+++ b/src/chat/components/RefreshQuickQuestionButton/index.tsx
@@ -0,0 +1,33 @@
+import { useQueryClient } from '@tanstack/react-query';
+import { css } from 'styled-components';
+
+export default function RefreshQuickQuestionButton() {
+ const queryClient = useQueryClient();
+
+ const handleClick = () => {
+ queryClient.invalidateQueries({ queryKey: ['tarotQuestionRecommends'] });
+ };
+
+ return (
+