Skip to content

chore: upgrade tanstack/react-query to 5.77.0 #18039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix story
  • Loading branch information
BrunoQuaresma committed May 25, 2025
commit b8f7a05eaee5f0039b65b6ceb66dff7b53b82bd1
6 changes: 4 additions & 2 deletions site/src/pages/GroupsPage/GroupPage.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ export const MembersError: Story = {
},
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.click(canvas.getByRole("button", { name: "Open" }));
const combobox = await canvas.findByRole("combobox");
await userEvent.click(combobox);
},
};

Expand All @@ -116,7 +117,8 @@ export const NoMembers: Story = {
},
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
await userEvent.click(canvas.getByRole("button", { name: "Open" }));
const combobox = await canvas.findByRole("combobox");
await userEvent.click(combobox);
},
};

Expand Down
Loading