fix(ci): set username for storybook

This commit is contained in:
Łukasz Mierzwa
2020-02-22 16:38:43 +00:00
parent 7b8ebe698a
commit e0752b59df

View File

@@ -19,6 +19,9 @@ storiesOf("MainModal", module)
.add("Configuration", () => {
const alertStore = new AlertStore([]);
const settingsStore = new Settings();
alertStore.info.authentication.enabled = true;
alertStore.info.authentication.username = "me@example.com";
return (
<MainModalContent
alertStore={alertStore}