From b1f7570bb90a24981a89382ef9a3b139d8312a8e Mon Sep 17 00:00:00 2001 From: Antonio Regadas Date: Wed, 15 Mar 2023 11:58:47 +0000 Subject: [PATCH] prettier fix --- .../note-to-trader/note-to-trader.stories.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ui/components/institutional/note-to-trader/note-to-trader.stories.js b/ui/components/institutional/note-to-trader/note-to-trader.stories.js index a87a81ebe53e..a756f9e4ccae 100644 --- a/ui/components/institutional/note-to-trader/note-to-trader.stories.js +++ b/ui/components/institutional/note-to-trader/note-to-trader.stories.js @@ -5,16 +5,15 @@ export default { title: 'Components/Institutional/NoteToTrader', component: NoteToTrader, args: { - placeholder: 'The approver will see this note when approving the transaction at the custodian.', + placeholder: + 'The approver will see this note when approving the transaction at the custodian.', noteText: '', labelText: 'Transaction note', maxLength: '280', - onChange: () => {}, + onChange: () => {/**/} }, }; -export const DefaultStory = (args) => ( - -); +export const DefaultStory = (args) => ; DefaultStory.storyName = 'NoteToTrader';