From 1a5c9c5cf54c0801135186f9406ad5e2df687102 Mon Sep 17 00:00:00 2001 From: Gobot1234 Date: Tue, 7 May 2024 20:34:59 +0100 Subject: [PATCH] fix: type-o missing [] --- packages/types/users.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/users.ts b/packages/types/users.ts index 5ea3710..f863f5a 100644 --- a/packages/types/users.ts +++ b/packages/types/users.ts @@ -45,7 +45,7 @@ export type User = helper.Props & export type Infraction = Omit export type UserWithInfractions = User & { - infractions: Infraction; + infractions: Infraction[]; }; export type InfractionType = users.InfractionType;