We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21fa207 commit 9d8349eCopy full SHA for 9d8349e
web/src/app/workspace/bots/bot-delete.tsx
@@ -32,7 +32,7 @@ export const BotDelete = ({ children }: { children?: React.ReactNode }) => {
32
botId: bot.id,
33
});
34
setDeleteVisible(false);
35
- router.push('/bots');
+ router.push('/workspace/bots');
36
}
37
}, [bot?.id, router]);
38
web/src/app/workspace/collections/page.tsx
@@ -35,7 +35,7 @@ export default async function Page() {
const res = await serverApi.defaultApi.collectionsGet({
page: 1,
pageSize: 100,
- includeSubscribed: true,
+ includeSubscribed: false,
39
40
collections = res.data.items || [];
41
} catch (err) {
0 commit comments