Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1d74ba7

Browse files
committed
fixup stories
1 parent 0f152a7 commit 1d74ba7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/modules/dashboard/Navbar/NavbarView.stories.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Story = StoryObj<typeof NavbarView>;
2626
export const ForAdmin: Story = {
2727
play: async ({ canvasElement }) => {
2828
const canvas = within(canvasElement);
29-
await userEvent.click(canvas.getByRole("button", { name: "Deployment" }));
29+
await userEvent.click(canvas.getByRole("button", { name: "Manage" }));
3030
},
3131
};
3232

@@ -41,7 +41,7 @@ export const ForAuditor: Story = {
4141
},
4242
play: async ({ canvasElement }) => {
4343
const canvas = within(canvasElement);
44-
await userEvent.click(canvas.getByRole("button", { name: "Deployment" }));
44+
await userEvent.click(canvas.getByRole("button", { name: "Manage" }));
4545
},
4646
};
4747

@@ -56,7 +56,7 @@ export const ForOrgAdmin: Story = {
5656
},
5757
play: async ({ canvasElement }) => {
5858
const canvas = within(canvasElement);
59-
await userEvent.click(canvas.getByRole("button", { name: "Deployment" }));
59+
await userEvent.click(canvas.getByRole("button", { name: "Manage" }));
6060
},
6161
};
6262

0 commit comments

Comments
 (0)