Skip to content

Commit

Permalink
fix: propagate organizationId when opening the search dialog (#7208)
Browse files Browse the repository at this point in the history
Closes #7199
  • Loading branch information
andrea-mauro authored Mar 27, 2024
1 parent 0b672c4 commit 55ef895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/insomnia/src/ui/components/command-palette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export const CommandPalette = () => {
setIsOpen(isOpen);
if (isOpen) {
const searchParams = new URLSearchParams();

searchParams.set('organizationId', organizationId);
searchParams.set('workspaceId', workspaceId);
searchParams.set('projectId', projectId);

Expand Down

0 comments on commit 55ef895

Please sign in to comment.