Skip to content

Commit 1c5ebca

Browse files
committed
ran lint
1 parent 5ae7de4 commit 1c5ebca

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

apps/docs/components/ui/icon-mapping.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ import {
3838
EyeIcon,
3939
FirecrawlIcon,
4040
FirefliesIcon,
41-
GitLabIcon,
4241
GithubIcon,
42+
GitLabIcon,
4343
GmailIcon,
4444
GongIcon,
4545
GoogleBooksIcon,
@@ -72,9 +72,9 @@ import {
7272
LinearIcon,
7373
LinkedInIcon,
7474
LinkupIcon,
75-
MailServerIcon,
7675
MailchimpIcon,
7776
MailgunIcon,
77+
MailServerIcon,
7878
Mem0Icon,
7979
MicrosoftDataverseIcon,
8080
MicrosoftExcelIcon,
@@ -107,8 +107,6 @@ import {
107107
ResendIcon,
108108
RevenueCatIcon,
109109
S3Icon,
110-
SQSIcon,
111-
STTIcon,
112110
SalesforceIcon,
113111
SearchIcon,
114112
SendgridIcon,
@@ -120,17 +118,19 @@ import {
120118
SimilarwebIcon,
121119
SlackIcon,
122120
SmtpIcon,
121+
SQSIcon,
123122
SshIcon,
123+
STTIcon,
124124
StagehandIcon,
125125
StripeIcon,
126126
SupabaseIcon,
127-
TTSIcon,
128127
TavilyIcon,
129128
TelegramIcon,
130129
TextractIcon,
131130
TinybirdIcon,
132131
TranslateIcon,
133132
TrelloIcon,
133+
TTSIcon,
134134
TwilioIcon,
135135
TypeformIcon,
136136
UpstashIcon,
@@ -141,11 +141,11 @@ import {
141141
WhatsAppIcon,
142142
WikipediaIcon,
143143
WordpressIcon,
144+
xIcon,
144145
YouTubeIcon,
145146
ZendeskIcon,
146147
ZepIcon,
147148
ZoomIcon,
148-
xIcon,
149149
} from '@/components/icons'
150150

151151
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>

apps/docs/content/docs/en/tools/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@
146146
"zep",
147147
"zoom"
148148
]
149-
}
149+
}

apps/sim/blocks/blocks/google_sheets.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,9 @@ Return ONLY the JSON array - no explanations, no markdown, no extra text.`,
870870
values: parsedValues,
871871
oauthCredential,
872872
...(filterColumn ? { filterColumn: (filterColumn as string).trim() } : {}),
873-
...(filterValue !== undefined && filterValue !== '' ? { filterValue: filterValue as string } : {}),
873+
...(filterValue !== undefined && filterValue !== ''
874+
? { filterValue: filterValue as string }
875+
: {}),
874876
...(filterMatchType ? { filterMatchType: filterMatchType as string } : {}),
875877
}
876878
},
@@ -896,7 +898,10 @@ Return ONLY the JSON array - no explanations, no markdown, no extra text.`,
896898
},
897899
filterColumn: { type: 'string', description: 'Column header name to filter on' },
898900
filterValue: { type: 'string', description: 'Value to match against the filter column' },
899-
filterMatchType: { type: 'string', description: 'Match type: contains, exact, starts_with, or ends_with' },
901+
filterMatchType: {
902+
type: 'string',
903+
description: 'Match type: contains, exact, starts_with, or ends_with',
904+
},
900905
},
901906
outputs: {
902907
// Read outputs

apps/sim/tools/google_sheets/read.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ export const readV2Tool: ToolConfig<GoogleSheetsV2ToolParams, GoogleSheetsV2Read
238238
return cellValue.startsWith(filterVal)
239239
case 'ends_with':
240240
return cellValue.endsWith(filterVal)
241-
case 'contains':
242241
default:
243242
return cellValue.includes(filterVal)
244243
}

0 commit comments

Comments
 (0)