Skip to content

Commit 440308f

Browse files
committed
Fix random story
1 parent 8588cf8 commit 440308f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

site/src/components/ResetPasswordDialog/ResetPasswordDialog.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Story } from "@storybook/react"
22
import React from "react"
33
import { MockUser } from "../../testHelpers"
4-
import { generateRandomString } from "../../util/random"
54
import { ResetPasswordDialog, ResetPasswordDialogProps } from "./ResetPasswordDialog"
65

76
export default {
@@ -19,5 +18,5 @@ export const Example = Template.bind({})
1918
Example.args = {
2019
open: true,
2120
user: MockUser,
22-
newPassword: generateRandomString(12),
21+
newPassword: "somerandomstringhere",
2322
}

0 commit comments

Comments
 (0)