Skip to content

Commit

Permalink
chore(scripts): update styles hbs
Browse files Browse the repository at this point in the history
  • Loading branch information
mydearxym committed Sep 26, 2023
1 parent 70cadc6 commit bc1a96f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/scripts/generators/container/styles.ts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from 'styled-components'
import type { TTestable } from '@/spec'
// import { theme } from '@/css'

export const Wrapper = styled.div.attrs(({ testid }: TTestable) => ({
export const Wrapper = styled.div.attrs<TTestable>(({ testid }) => ({
'data-test-id': testid,
}))<TTestable>`
//
Expand Down
2 changes: 1 addition & 1 deletion utils/scripts/generators/widget/styles.ts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { TTestable } from '@/spec'
// import Img from '@/Img'
// import { theme } from '@/css'

export const Wrapper = styled.div.attrs(({ testid }: TTestable) => ({
export const Wrapper = styled.div.attrs<TTestable>(({ testid }) => ({
'data-test-id': testid,
}))<TTestable>``

Expand Down

0 comments on commit bc1a96f

Please sign in to comment.