Skip to content

Commit

Permalink
Fix more type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlubin committed Apr 30, 2024
1 parent 90e23bd commit 58b33da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/publications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import EquivalenceByCanonicalization from "@/../public/projects/equivalence-by-c
interface PublicationAttributes {
title: string;
authors: string[];
equalContribution?: bool;
equalContribution?: boolean;
hero: StaticImageData;
date: Date;
}
Expand All @@ -42,7 +42,7 @@ export interface JournalPublication extends PublicationAttributes {
journal: {
name: string;
volume: number;
issue: number;
issue: number | string;
};
acmDlUrl: string;
}
Expand Down Expand Up @@ -73,7 +73,7 @@ export const PUBLICATIONS: Publication[] = [
equalContribution: true,
journal: {
name: "Proceedings of the ACM on Programming Languages",
volume: "8",
volume: 8,
issue: "PLDI",
},
hero: EquivalenceByCanonicalization,
Expand Down

0 comments on commit 58b33da

Please sign in to comment.