Fix types

This commit is contained in:
Jackson Harper 2022-10-25 11:14:28 +08:00
parent 3ab3910b12
commit 64c708986f

View file

@ -3,10 +3,10 @@ import useSWR from 'swr'
import { publicGqlFetcher } from '../networkHelpers'
export interface Integration {
id: String
id: string
type: IntegrationType
token: String
enabled: Boolean
token: string
enabled: boolean
createdAt: Date
updatedAt: Date
}