Skip to content

Commit

Permalink
[Closes #445] Image update for no assigned benchmarks (#469)
Browse files Browse the repository at this point in the history
* benchmark image update

* prettier updates
  • Loading branch information
katconnors authored Nov 28, 2024
1 parent 31057b2 commit 0c798b0
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ declare module "*.png" {
const value: string;
export default value;
}
declare module "*.svg" {
const value: string;
export default value;
}
2 changes: 1 addition & 1 deletion src/pages/benchmarks/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Image from "next/image";
import Link from "next/link";
import { useEffect, useState } from "react";
import $button from "../../components/design_system/button/Button.module.css";
import noBenchmarks from "../../public/img/no-benchmarks.png";
import noBenchmarks from "../../public/img/no-benchmarks-transparent.svg";
import SearchIcon from "@mui/icons-material/Search";
import { SortDirection, SortProperty, TaskData } from "@/types/global";

Expand Down
9 changes: 9 additions & 0 deletions src/public/img/no-benchmarks-transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/public/img/no-benchmarks.png
Binary file not shown.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
},
"sourceMap": true
},
"include": ["next-env.d.ts", "references.d.ts", "**/*.ts", "**/*.tsx"],
"include": [
"src/modules.d.ts",
"next-env.d.ts",
"references.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": ["node_modules"]
}

0 comments on commit 0c798b0

Please sign in to comment.