Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion public/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/style.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/components/Alert.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ describe('<Alert />', () => {
const removeWeekdayButton = screen.getByText(/remove monday/i);

function modify<
K extends keyof typeof mockState['input'],
T extends typeof mockState['input'][K]
K extends keyof (typeof mockState)['input'],
T extends (typeof mockState)['input'][K]
>(key: K, value: T) {
return {
...mockState,
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dropdown.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ describe('<Dropdown />', () => {
);

function modify<
K extends keyof typeof mockState['input'],
T extends typeof mockState['input'][K]
K extends keyof (typeof mockState)['input'],
T extends (typeof mockState)['input'][K]
>(key: K, value: T) {
return {
...mockState,
Expand Down
Loading