We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4c46b commit 683de68Copy full SHA for 683de68
packages/compass-workspaces/src/stores/workspaces-middleware.ts
@@ -51,7 +51,7 @@ async function saveWorkspaceStateToUserData(
51
try {
52
// Transform the state to the format we want to save
53
const stateToSave: WorkspacesStateData = {
54
- tabs: state.tabs,
+ tabs: state.tabs.filter((tab) => tab.type !== 'Welcome'), // Don't save welcome tabs
55
activeTabId: state.activeTabId,
56
timestamp: Date.now(),
57
};
0 commit comments