1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 17:26:37 -04:00

fix custom image width/height when passed in as strings

This commit is contained in:
2022-01-24 11:37:12 -05:00
parent e5b862508c
commit e91595c8bf
6 changed files with 8 additions and 8 deletions

View File

@ -1,11 +1,11 @@
import { graphql } from "@octokit/graphql";
import { NextSeo } from "next-seo";
import Content from "../components/Content/Content";
import PageTitle from "../components/PageTitle/PageTitle";
import RepositoryCard from "../components/RepositoryCard/RepositoryCard";
import { ProjectsIcon } from "../components/Icons";
import type { GetStaticProps } from "next";
import { RepoType } from "../types";
import Content from "../components/Content/Content";
type Props = {
repos: RepoType[];