Skip to content

Commit

Permalink
stlyes -> styles
Browse files Browse the repository at this point in the history
  • Loading branch information
oyamauchi committed Aug 7, 2023
1 parent be7397d commit fa023d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/incentive-details.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css, html } from 'lit';
import { calculatorTableIcon } from './icons';
import { tableStlyes } from './styles';
import { tableStyles } from './styles';
import {
AmountType,
ICalculatedIncentiveResults,
Expand Down Expand Up @@ -67,7 +67,7 @@ const linkButtonStyles = css`
}
`;

export const detailsStyles = [linkButtonStyles, tableStlyes];
export const detailsStyles = [linkButtonStyles, tableStyles];

function formatAmount(amount: number, amount_type: AmountType) {
if (amount_type === 'percent') {
Expand Down
2 changes: 1 addition & 1 deletion src/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const cardStyles = css`
}
`;

export const tableStlyes = css`
export const tableStyles = css`
table,
thead,
tbody,
Expand Down

0 comments on commit fa023d1

Please sign in to comment.