Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurnford committed Apr 29, 2020
1 parent d17a004 commit f79fdf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ interface TriggerCreationModalProps {
onSubmit: (dialog: DialogInfo, luFilePayload?: LuFilePayload) => void;
}

const TriggerCreationModal: React.FC<TriggerCreationModalProps> = props => {
export const TriggerCreationModal: React.FC<TriggerCreationModalProps> = props => {
const { isOpen, onDismiss, onSubmit, dialogId } = props;
const { state } = useContext(StoreContext);
const { dialogs, luFiles, locale, projectId, schemas } = state;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface CreateDialogModalProps {
onSubmit: (skillFormData: ISkillFormData) => void;
}

const AddSkillDialog: React.FC<CreateDialogModalProps> = props => {
export const AddSkillDialog: React.FC<CreateDialogModalProps> = props => {
const { state } = useContext(StoreContext);
const { skills } = state;
const { isOpen, onDismiss, onSubmit } = props;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface CreateDialogModalProps {
isOpen: boolean;
}

const CreateDialogModal: React.FC<CreateDialogModalProps> = props => {
export const CreateDialogModal: React.FC<CreateDialogModalProps> = props => {
const { state } = useContext(StoreContext);
const { dialogs } = state;
const { onSubmit, onDismiss, isOpen } = props;
Expand Down

0 comments on commit f79fdf6

Please sign in to comment.