Skip to content

Commit

Permalink
chore: add ts-ignore in styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ogustavo-pereira committed Mar 7, 2023
1 parent fc6924f commit 9196576
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions app/main/components/ResultsList/Row/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from 'react'
import SmartIcon from '../../SmartIcon'

// @ts-ignore
import styles from './styles.module.css'

interface RowProps {
Expand Down
2 changes: 2 additions & 0 deletions app/main/components/StatusBar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import React from 'react'

// @ts-ignore
import styles from './styles.module.css'

interface StatusBarProps {
Expand Down
3 changes: 0 additions & 3 deletions app/main/constants/actionTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ export const SELECT_ELEMENT = 'SELECT_ELEMENT'
export const SHOW_RESULT = 'SHOW_RESULT'
export const HIDE_RESULT = 'HIDE_RESULT'
export const UPDATE_RESULT = 'UPDATE_RESULT'

export const RESET = 'RESET'
export const CHANGE_VISIBLE_RESULTS = 'CHANGE_VISIBLE_RESULTS'

export const ICON_LOADED = 'ICON_LOADED'

export const SET_STATUS_BAR_TEXT = 'SET_STATUS_BAR_TEXT'

0 comments on commit 9196576

Please sign in to comment.