Skip to content

Commit

Permalink
fix: satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
seasick committed Jan 21, 2024
1 parent 0fc0b83 commit b8c1e05
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
3 changes: 1 addition & 2 deletions src/components/Customizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ export default function Customizer({ parameters, onChange }: Props) {
};

const handleParameterChange = (
event: React.ChangeEvent<HTMLInputElement>,
newValue?
event: React.ChangeEvent<HTMLInputElement>
) => {
changeParameter(event.target.name, event.target.value);
};
Expand Down
7 changes: 0 additions & 7 deletions src/lib/fetcha/thingiverse.com.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import { FetchaFile } from '../fetcha';

type Stl = {
id: number;
name: string;
fileSize: number;
// filePreviewPath: string; // Always empty in my tests
};

export default async function thingiverseComFetcha(
url: string,
fileNameFilter?: string
Expand Down

0 comments on commit b8c1e05

Please sign in to comment.