Skip to content
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

Demo info not rendering #234 #238

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
Next Next commit
fix storybook
  • Loading branch information
MingyiXu11 committed Nov 15, 2024
commit 5e0ac1cf64a5501a9c63a10c1eaa6f17bedd1294
8 changes: 4 additions & 4 deletions stories/dem-info.stories.jsx
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ export default {

export const PrimaryAllFieldsIncluded = {
args: {
dob: new Date('1990-10-20T00:00:00.000Z').toISOString(),
dob: new Date('1990-10-20T00:00:00.000Z'),
state: 'NY',
party: 'Independent',
},
@@ -18,7 +18,7 @@ export const UserNotFound = { args: {} }

export const AgeAndStateOnly = {
args: {
dob: new Date('1990-10-20T00:00:00.000Z').toISOString(),
dob: new Date('1990-10-20T00:00:00.000Z'),
state: 'NY',
},
}
@@ -32,7 +32,7 @@ export const StateAndPartyOnly = {

export const AgeAndPartyOnly = {
args: {
dob: new Date('1990-10-20T00:00:00.000Z').toISOString(),
dob: new Date('1990-10-20T00:00:00.000Z'),
party: 'Independent',
},
}
@@ -45,7 +45,7 @@ export const PartyOnly = {

export const AgeOnly = {
args: {
dob: new Date('1990-10-20T00:00:00.000Z').toISOString(),
dob: new Date('1990-10-20T00:00:00.000Z'),
},
}