Skip to content

Commit

Permalink
fix: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
greenpixels committed Oct 2, 2023
1 parent f1a7448 commit 682f9a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/helpers/hooks/useScaleBreakpoints.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function useScaleBreakpoints(props = defaultBreakpoints) {
return () => {
window.removeEventListener("resize", handleResize);
};
}, []);
}, [props]);

return scale;
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/widgets/AssetCardEditor/AssetCardEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @format */

import { useEffect, useState } from "react";
import { useState } from "react";
import { AssetCardViewer } from "../../components/AssetCardViewer/AssetCardViewer";
import { AssetCardForm } from "../../components/AssetCardForm/AssetCardForm";
import { AssetCard } from "@shared/types/AssetCard";
Expand Down

0 comments on commit 682f9a6

Please sign in to comment.