Skip to content

Commit d4ce3e7

Browse files
committed
Fix
1 parent 47f1a9f commit d4ce3e7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

site/src/pages/CreateTokenPage/CreateTokenForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ export const CreateTokenForm: FC<CreateTokenFormProps> = ({
119119

120120
{lifetimeDays === "custom" && (
121121
<TextField
122-
data-chromatic="ignore"
123122
type="date"
124123
label="Expires on"
125124
defaultValue={dayjs().add(expDays, "day").format("YYYY-MM-DD")}
@@ -130,6 +129,7 @@ export const CreateTokenForm: FC<CreateTokenFormProps> = ({
130129
setExpDays(lt);
131130
}}
132131
inputProps={{
132+
"data-chromatic": "ignore",
133133
min: dayjs().add(1, "day").format("YYYY-MM-DD"),
134134
max: maxTokenLifetime
135135
? dayjs()

site/src/pages/OrganizationSettingsPage/OrganizationProvisionersPage/OrganizationProvisionersPageView.stories.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ const meta: Meta<typeof OrganizationProvisionersPageView> = {
2424
version: "0.0.0",
2525
},
2626
],
27+
filter: {
28+
ids: "",
29+
},
2730
},
2831
};
2932

site/src/pages/TerminalPage/TerminalPage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const meta = {
9191
},
9292
],
9393
chromatic: {
94-
diffThreshold: 0.5,
94+
diffThreshold: 0.8,
9595
},
9696
},
9797
decorators: [

0 commit comments

Comments
 (0)