Skip to content

Commit

Permalink
fix story
Browse files Browse the repository at this point in the history
  • Loading branch information
vleague2 committed Nov 27, 2024
1 parent 639c85f commit aa18173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/components/src/toast/toast.stories.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CommonModule } from "@angular/common";
import { Component, Input } from "@angular/core";
import { Component, Input, signal } from "@angular/core";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { action } from "@storybook/addon-actions";
import { Meta, StoryObj, applicationConfig, moduleMetadata } from "@storybook/angular";
Expand Down Expand Up @@ -56,7 +56,7 @@ export default {
args: {
onClose: action("emit onClose"),
variant: "info",
progressWidth: 50,
progressWidth: signal(50),
title: "",
message: "Hello Bitwarden!",
},
Expand Down

0 comments on commit aa18173

Please sign in to comment.