Skip to content

Commit

Permalink
fix: added 700 duration to Duration type
Browse files Browse the repository at this point in the history
  • Loading branch information
joeychrys committed Apr 14, 2022
1 parent 1dce64e commit efd4611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Toast/ToastContext.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createContext, useContext } from 'react';

export type Duration = 75 | 100 | 150 | 200 | 300 | 500 | 1000;
export type Duration = 75 | 100 | 150 | 200 | 300 | 500 | 700 | 1000;

type ToastContext = {
duration?: Duration;
Expand Down

0 comments on commit efd4611

Please sign in to comment.