mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05: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