Skip to content

Commit

Permalink
Fix lint and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tannerkrewson committed Jul 27, 2024
1 parent 70c8e58 commit 2de2acc
Show file tree
Hide file tree
Showing 10 changed files with 719 additions and 835 deletions.
2 changes: 1 addition & 1 deletion components/common/CollapseBox.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Chip, Spacer } from "@nextui-org/react";
import { Chip } from "@nextui-org/react";
import React, { useState } from "react";
import PrimaryButton from "./PrimaryButton";

Expand Down
7 changes: 1 addition & 6 deletions components/layout/MainTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import converter from "phonetic-alphabet-converter";
import {
Popover,
PopoverContent,
PopoverTrigger,
Tooltip,
} from "@nextui-org/react";
import { Popover, PopoverContent, PopoverTrigger } from "@nextui-org/react";
import { useCallback, useState } from "react";
import { Textfit } from "@aw-web-design/react-textfit";
import { RocketcrabMode } from "../../types/enums";
Expand Down
33 changes: 19 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
Expand Down
4 changes: 2 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Body from "../components/layout/Body";
import "fontsource-inconsolata";
import "fontsource-mukta";
import "fontsource-inconsolata/index.css";
import "fontsource-mukta/index.css";
import { AppPropsType } from "next/dist/shared/lib/utils";
import { initGA, logPageView } from "../utils/analytics";
import { useState, useEffect, createContext } from "react";
Expand Down
Loading

0 comments on commit 2de2acc

Please sign in to comment.