From d6a00760e7295a892927a3b8f7f06397ddc4ddc4 Mon Sep 17 00:00:00 2001 From: Aminreza Badeleh Mansoori <48173745+aminmansoori@users.noreply.github.com> Date: Mon, 9 Dec 2024 13:10:51 +0100 Subject: [PATCH] add an Id to userEvent type (#895) --- src/userEvents/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/userEvents/types.ts b/src/userEvents/types.ts index c9e49c12..a46d631b 100644 --- a/src/userEvents/types.ts +++ b/src/userEvents/types.ts @@ -1,4 +1,5 @@ export type UserEvent = { + id: number; event_name: string; user_id: number; };