mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-10 05:35:05 +08:00
fixed type
This commit is contained in:
parent
9c6f678748
commit
58a78d4496
2 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ $("#quoteReportPopup .submit").on("click", async () => {
|
|||
|
||||
$(".pageTest #reportQuoteButton").click(async () => {
|
||||
show({
|
||||
quoteId: parseInt(TestWords.randomQuote?.id as string),
|
||||
quoteId: TestWords.randomQuote?.id,
|
||||
noAnim: false,
|
||||
});
|
||||
});
|
||||
|
|
2
frontend/src/scripts/types/types.d.ts
vendored
2
frontend/src/scripts/types/types.d.ts
vendored
|
@ -526,7 +526,7 @@ declare namespace MonkeyTypes {
|
|||
text: string;
|
||||
source: string;
|
||||
length: number;
|
||||
id: number | string;
|
||||
id: number;
|
||||
group?: number;
|
||||
language: string;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue