Skip to content

Commit 9d8349e

Browse files
committed
fix: remove Subscribed collection
1 parent 21fa207 commit 9d8349e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/src/app/workspace/bots/bot-delete.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const BotDelete = ({ children }: { children?: React.ReactNode }) => {
3232
botId: bot.id,
3333
});
3434
setDeleteVisible(false);
35-
router.push('/bots');
35+
router.push('/workspace/bots');
3636
}
3737
}, [bot?.id, router]);
3838

web/src/app/workspace/collections/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default async function Page() {
3535
const res = await serverApi.defaultApi.collectionsGet({
3636
page: 1,
3737
pageSize: 100,
38-
includeSubscribed: true,
38+
includeSubscribed: false,
3939
});
4040
collections = res.data.items || [];
4141
} catch (err) {

0 commit comments

Comments
 (0)