Skip to content

Commit 2ba526f

Browse files
committed
fix(blocks): align Greptile Slack Q&A bot icon with its title
The renamed title leads with Greptile but the row kept icon: SlackIcon, conflicting on the icon-only home surface. Swap to GreptileIcon (matching the block's sibling templates) and drop the orphaned SlackIcon import.
1 parent 44ff3f5 commit 2ba526f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/blocks/blocks/greptile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ClipboardList } from '@sim/emcn/icons'
2-
import { GreptileIcon, SlackIcon } from '@/components/icons'
2+
import { GreptileIcon } from '@/components/icons'
33
import type { BlockConfig, BlockMeta } from '@/blocks/types'
44
import { AuthMode, IntegrationType } from '@/blocks/types'
55
import type { GreptileResponse } from '@/tools/greptile/types'
@@ -202,7 +202,7 @@ export const GreptileBlockMeta = {
202202
url: 'https://www.greptile.com',
203203
templates: [
204204
{
205-
icon: SlackIcon,
205+
icon: GreptileIcon,
206206
title: 'Greptile Slack Q&A bot',
207207
prompt:
208208
'Build a workflow that monitors a Slack channel for code questions, routes them to Greptile against the relevant repository, and replies in-thread with the answer and the cited files.',

0 commit comments

Comments
 (0)