Skip to content

Commit

Permalink
add bang for constant variables in cipher form stories
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-livefront committed Dec 20, 2024
1 parent b4de7dc commit 12c46ea
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions libs/vault/src/cipher-form/cipher-form.stories.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { importProvidersFrom } from "@angular/core";
import { action } from "@storybook/addon-actions";
import {
Expand Down Expand Up @@ -234,7 +232,7 @@ export const Edit: Story = {
config: {
...defaultConfig,
mode: "edit",
originalCipher: defaultConfig.originalCipher,
originalCipher: defaultConfig.originalCipher!,
},
},
};
Expand All @@ -245,7 +243,7 @@ export const PartialEdit: Story = {
config: {
...defaultConfig,
mode: "partial-edit",
originalCipher: defaultConfig.originalCipher,
originalCipher: defaultConfig.originalCipher!,
},
},
};
Expand All @@ -256,7 +254,7 @@ export const Clone: Story = {
config: {
...defaultConfig,
mode: "clone",
originalCipher: defaultConfig.originalCipher,
originalCipher: defaultConfig.originalCipher!,
},
},
};
Expand All @@ -269,7 +267,7 @@ export const NoPersonalOwnership: Story = {
mode: "add",
allowPersonalOwnership: false,
originalCipher: defaultConfig.originalCipher,
organizations: defaultConfig.organizations,
organizations: defaultConfig.organizations!,
},
},
};

0 comments on commit 12c46ea

Please sign in to comment.