Merge branch 'main' into feature/chat-message-feedback

This commit is contained in:
Henry
2024-02-27 00:33:48 +08:00
15 changed files with 538 additions and 34 deletions
+1
View File
@@ -47,6 +47,7 @@ const Chatflows = () => {
const [view, setView] = React.useState(localStorage.getItem('flowDisplayStyle') || 'card')
const handleChange = (event, nextView) => {
if (nextView === null) return
localStorage.setItem('flowDisplayStyle', nextView)
setView(nextView)
}
@@ -131,6 +131,7 @@ const Marketplace = () => {
}
const handleViewChange = (event, nextView) => {
if (nextView === null) return
localStorage.setItem('mpDisplayStyle', nextView)
setView(nextView)
}