Skip to content

Commit 49ab92f

Browse files
committed
fix(app): bypass path normalization to fix sidebar session queries on Windows (resolved conflicts)
1 parent a3d6b17 commit 49ab92f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/app/src/app/context/sidebar-sessions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export function createSidebarSessionsStore(options: {
145145
}
146146
}
147147

148-
const queryDirectory = normalizeDirectoryQueryPath(directory) || undefined;
148+
const queryDirectory = directory || undefined;
149149
const list = unwrap(
150150
await client.session.list({ directory: queryDirectory, roots: false, limit: SIDEBAR_SESSION_LIMIT }),
151151
);

0 commit comments

Comments
 (0)