Skip to content

Commit

Permalink
more errors
Browse files Browse the repository at this point in the history
  • Loading branch information
davemarco committed Sep 18, 2024
1 parent c0d4b71 commit a6417c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion new-log-viewer/src/components/DropFileContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface DropFileContextProviderProps {
*/
const DropFileContainer = ({children}: DropFileContextProviderProps) => {
const {loadFile} = useContext(StateContext);
const [isFileHovering, setIsFileHovering] = useState(false);
[isFileHovering, setIsFileHovering] = useState(false);

Check failure on line 25 in new-log-viewer/src/components/DropFileContainer/index.tsx

View workflow job for this annotation

GitHub Actions / lint-check

Expected indentation of 4 spaces but found 13

Check warning on line 25 in new-log-viewer/src/components/DropFileContainer/index.tsx

View workflow job for this annotation

GitHub Actions / lint-check

useState call is not destructured into value + setter pair

const handleDrag = (ev: React.DragEvent<HTMLDivElement>) => {
ev.preventDefault();
Expand Down
2 changes: 1 addition & 1 deletion new-log-viewer/src/components/MenuBar/PageNumInput.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.page-num-input input::-webkit-outer-spin-button,
.page-num-input input::-webkit-inner-spin-button {
.page-num-input input::-webkit-inner-spin-button {

Check failure on line 2 in new-log-viewer/src/components/MenuBar/PageNumInput.css

View workflow job for this annotation

GitHub Actions / lint-check

Stylelint problem

Delete "····" (prettier/prettier)
margin: 0;
appearance: none;
}
Expand Down

0 comments on commit a6417c1

Please sign in to comment.