Skip to content

Commit

Permalink
Merge branch 'main' into feat/frontend-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
canjalal committed Dec 4, 2024
2 parents 8efec6b + 0c798b0 commit 75c79d8
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 75c79d8

Please sign in to comment.