Skip to content

Commit

Permalink
chore: Some fixes (#300)
Browse files Browse the repository at this point in the history
Some fixes
  • Loading branch information
noman-land authored Dec 21, 2024
1 parent b5dd7f7 commit 30d324b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"scripts": {
"convert": "python src/python/main.py",
"dev": "vite",
"start": "npm run dev",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext ts,tsx --report-unused-disable-directives --max-warnings 0 .",
Expand Down
4 changes: 2 additions & 2 deletions src/js/Tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const Tag = styled.button`
`;

interface TagsProps {
live: number;
compilation: number;
live: 0 | 1;
compilation: 0 | 1;
}

export const Tags = ({ live, compilation }: TagsProps) => {
Expand Down
4 changes: 2 additions & 2 deletions src/js/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export interface Episode {
presenter4: number;
presenter5: number;
venue: number;
live: number;
compilation: number;
live: 0 | 1;
compilation: 0 | 1;
}

export interface Word {
Expand Down

0 comments on commit 30d324b

Please sign in to comment.