Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(triggers): resolve Biome lint errors in Gong trigger files
  • Loading branch information
waleedlatif1 committed Apr 6, 2026
commit 5a71158befa68487c2d30b1262ba722d7c419187
2 changes: 1 addition & 1 deletion apps/sim/blocks/blocks/gong.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { GongIcon } from '@/components/icons'
import { AuthMode, type BlockConfig, IntegrationType } from '@/blocks/types'
import { getTrigger } from '@/triggers'
import type { GongResponse } from '@/tools/gong/types'
import { getTrigger } from '@/triggers'

export const GongBlock: BlockConfig<GongResponse> = {
type: 'gong',
Expand Down
6 changes: 5 additions & 1 deletion apps/sim/lib/webhooks/providers/gong.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import type { FormatInputContext, FormatInputResult, WebhookProviderHandler } from '@/lib/webhooks/providers/types'
import type {
FormatInputContext,
FormatInputResult,
WebhookProviderHandler,
} from '@/lib/webhooks/providers/types'

export const gongHandler: WebhookProviderHandler = {
async formatInput({ body }: FormatInputContext): Promise<FormatInputResult> {
Expand Down
Loading