mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2026-03-26 22:39:30 -04:00
Fix: Make thread_id nullable
This commit is contained in:
@@ -538,7 +538,7 @@ export type Database = {
|
||||
response_count: number | null
|
||||
status: string
|
||||
subject: string
|
||||
thread_id: string
|
||||
thread_id: string | null
|
||||
updated_at: string
|
||||
user_agent: string | null
|
||||
user_id: string | null
|
||||
@@ -559,7 +559,7 @@ export type Database = {
|
||||
response_count?: number | null
|
||||
status?: string
|
||||
subject: string
|
||||
thread_id: string
|
||||
thread_id?: string | null
|
||||
updated_at?: string
|
||||
user_agent?: string | null
|
||||
user_id?: string | null
|
||||
@@ -580,7 +580,7 @@ export type Database = {
|
||||
response_count?: number | null
|
||||
status?: string
|
||||
subject?: string
|
||||
thread_id?: string
|
||||
thread_id?: string | null
|
||||
updated_at?: string
|
||||
user_agent?: string | null
|
||||
user_id?: string | null
|
||||
|
||||
Reference in New Issue
Block a user