Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszantas committed Apr 25, 2022
1 parent ebebd7c commit b9414c7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion applications/launchpad_v2/__tests__/mocks/mockTauriIPC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const defaultTauriMockValues: Record<string, unknown> = {
* The Tauri IPC mock.
*
* It uses Tauri's mockIPC and returns the value set in the `props`.
* If nothing found in `props`, it will return a value from from `defaultTauriMockValues`.
* If nothing found in `props`, it will return a value from `defaultTauriMockValues`.
*
* @param {Record<string, unknown>} props - pass the value you expect in tests
*
Expand Down
2 changes: 1 addition & 1 deletion applications/launchpad_v2/src/components/Footer/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export const StyledFooter = styled.footer`

export const FooterTextWrapper = styled(animated.div)`
text-align: center;
color: ${({ theme }) => theme.tetriary};
color: ${({ theme }) => theme.tertiary};
`
2 changes: 1 addition & 1 deletion applications/launchpad_v2/src/styles/styles/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const colors = {
dark: {
primary: '#20053D',
secondary: '#716A78',
tetriary: '#837A8B',
tertiary: '#837A8B',
borders: '#EDECEE',
placeholder: '#D6D4D9',
input: '#000000',
Expand Down
4 changes: 2 additions & 2 deletions applications/launchpad_v2/src/styles/themes/dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styles from '../styles'
const darkTheme = {
primary: styles.colors.light.primary,
secondary: styles.colors.dark.secondary,
tetriary: styles.colors.dark.tetriary,
tertiary: styles.colors.dark.tertiary,
background: styles.colors.darkMode.modalBackgroundSecondary,
backgroundSecondary: styles.colors.darkMode.modalBackground,
backgroundImage: styles.colors.light.backgroundImage,
Expand All @@ -18,7 +18,7 @@ const darkTheme = {
inverted: {
primary: styles.colors.light.primary,
secondary: styles.colors.dark.secondary,
tetriary: styles.colors.dark.tetriary,
tertiary: styles.colors.dark.tertiary,
background: styles.colors.darkMode.modalBackgroundSecondary,
backgroundSecondary: styles.colors.darkMode.modalBackground,
backgroundImage: styles.colors.light.backgroundImage,
Expand Down
4 changes: 2 additions & 2 deletions applications/launchpad_v2/src/styles/themes/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styles from '../styles'
const lightTheme = {
primary: styles.colors.dark.primary,
secondary: styles.colors.dark.secondary,
tetriary: styles.colors.dark.tetriary,
tertiary: styles.colors.dark.tertiary,
background: styles.colors.light.primary,
backgroundSecondary: styles.colors.light.background,
backgroundImage: styles.colors.light.backgroundImage,
Expand All @@ -19,7 +19,7 @@ const lightTheme = {
inverted: {
primary: styles.colors.light.primary,
secondary: styles.colors.dark.secondary,
tetriary: styles.colors.dark.tetriary,
tertiary: styles.colors.dark.tertiary,
background: styles.colors.darkMode.modalBackgroundSecondary,
backgroundSecondary: styles.colors.darkMode.modalBackground,
backgroundImage: styles.colors.light.backgroundImage,
Expand Down

0 comments on commit b9414c7

Please sign in to comment.