From ed0c6e0588f22f0bba01b19247d0d7d68199d3fe Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 21 Oct 2022 12:57:53 +0100 Subject: [PATCH] fix: type error See: --- package.json | 3 +-- src/pages/tools.tsx | 7 +++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 313cdd0..841f9a9 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,7 @@ "url": "git+https://github.com/QURIresearch/metaforecast.git" }, "keywords": [ - "forecasts", - "predictions" + "forecasts", "predictions" ], "author": "Nuño Sempere", "license": "MIT", diff --git a/src/pages/tools.tsx b/src/pages/tools.tsx index d5c51ca..bc58008 100644 --- a/src/pages/tools.tsx +++ b/src/pages/tools.tsx @@ -10,6 +10,13 @@ import twitterImg from "../../public/screenshots/twitter.png"; import { Card } from "../web/common/Card"; import { Layout } from "../web/common/Layout"; +type StaticImageData = { + src: string; + height: number; + width: number; + placeholder?: string; +}; + type AnyTool = { title: string; description: string;