@@ -113,7 +113,7 @@ storiesOf('Navigation / Sidebar', module)
113113 ) )
114114 . addDecorator ( withKnobs ) // ====== Stories ======
115115 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
116- . add ( 'No Category' , ( props : { currentTheme : string } ) => (
116+ . add ( 'No Category' , ( _ , props : { currentTheme : string } ) => (
117117 < Sidebar
118118 menus = { emptyMenus }
119119 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
@@ -131,7 +131,7 @@ storiesOf('Navigation / Sidebar', module)
131131 />
132132 ) )
133133 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
134- . add ( 'Wallets Category' , ( props : { currentTheme : string } ) => (
134+ . add ( 'Wallets Category' , ( _ , props : { currentTheme : string } ) => (
135135 < Sidebar
136136 menus = { emptyMenus }
137137 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
@@ -149,7 +149,7 @@ storiesOf('Navigation / Sidebar', module)
149149 />
150150 ) )
151151 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
152- . add ( 'Wallet Selected' , ( props : { currentTheme : string } ) => (
152+ . add ( 'Wallet Selected' , ( _ , props : { currentTheme : string } ) => (
153153 < Sidebar
154154 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
155155 activeSidebarCategory = { CATEGORIES_WITH_DELEGATION_COUNTDOWN [ 0 ] . route }
@@ -169,7 +169,7 @@ storiesOf('Navigation / Sidebar', module)
169169 />
170170 ) )
171171 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
172- . add ( 'Hardware Wallet Selected' , ( props : { currentTheme : string } ) => (
172+ . add ( 'Hardware Wallet Selected' , ( _ , props : { currentTheme : string } ) => (
173173 < Sidebar
174174 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
175175 activeSidebarCategory = { CATEGORIES_WITH_DELEGATION_COUNTDOWN [ 1 ] . route }
@@ -188,7 +188,7 @@ storiesOf('Navigation / Sidebar', module)
188188 />
189189 ) )
190190 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
191- . add ( 'Delegation Category' , ( props : { currentTheme : string } ) => (
191+ . add ( 'Delegation Category' , ( _ , props : { currentTheme : string } ) => (
192192 < Sidebar
193193 menus = { emptyMenus }
194194 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
@@ -208,7 +208,7 @@ storiesOf('Navigation / Sidebar', module)
208208 . add (
209209 'Decentralization Progress Category' ,
210210 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
211- ( props : { currentTheme : string } ) => (
211+ ( _ , props : { currentTheme : string } ) => (
212212 < Sidebar
213213 menus = { emptyMenus }
214214 categories = { CATEGORIES_WITHOUT_DELEGATION_COUNTDOWN }
@@ -227,7 +227,7 @@ storiesOf('Navigation / Sidebar', module)
227227 )
228228 )
229229 // @ts -ignore ts-migrate(2345) FIXME: Argument of type '(props: { currentTheme: strin... Remove this comment to see the full error message
230- . add ( 'Network label' , ( props : { currentTheme : string } ) => (
230+ . add ( 'Network label' , ( _ , props : { currentTheme : string } ) => (
231231 < Sidebar
232232 menus = { emptyMenus }
233233 categories = { CATEGORIES_WITH_DELEGATION_COUNTDOWN }
0 commit comments