Skip to content

Commit 49a6ff2

Browse files
committed
lint
1 parent cfa3211 commit 49a6ff2

File tree

5 files changed

+14
-20
lines changed

5 files changed

+14
-20
lines changed

apps/docs/components/icons.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,12 +1237,7 @@ export function GoogleSlidesIcon(props: SVGProps<SVGSVGElement>) {
12371237

12381238
export function GoogleContactsIcon(props: SVGProps<SVGSVGElement>) {
12391239
return (
1240-
<svg
1241-
{...props}
1242-
viewBox='0 0 24 24'
1243-
fill='none'
1244-
xmlns='http://www.w3.org/2000/svg'
1245-
>
1240+
<svg {...props} viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'>
12461241
<path
12471242
d='M20.16 3H3.84C2.82 3 2 3.82 2 4.84v14.32C2 20.18 2.82 21 3.84 21h16.32c1.02 0 1.84-.82 1.84-1.84V4.84C22 3.82 21.18 3 20.16 3z'
12481243
fill='#F1F3F4'

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,
@@ -73,9 +73,9 @@ import {
7373
LinearIcon,
7474
LinkedInIcon,
7575
LinkupIcon,
76-
MailServerIcon,
7776
MailchimpIcon,
7877
MailgunIcon,
78+
MailServerIcon,
7979
Mem0Icon,
8080
MicrosoftDataverseIcon,
8181
MicrosoftExcelIcon,
@@ -108,8 +108,6 @@ import {
108108
ResendIcon,
109109
RevenueCatIcon,
110110
S3Icon,
111-
SQSIcon,
112-
STTIcon,
113111
SalesforceIcon,
114112
SearchIcon,
115113
SendgridIcon,
@@ -121,17 +119,19 @@ import {
121119
SimilarwebIcon,
122120
SlackIcon,
123121
SmtpIcon,
122+
SQSIcon,
124123
SshIcon,
124+
STTIcon,
125125
StagehandIcon,
126126
StripeIcon,
127127
SupabaseIcon,
128-
TTSIcon,
129128
TavilyIcon,
130129
TelegramIcon,
131130
TextractIcon,
132131
TinybirdIcon,
133132
TranslateIcon,
134133
TrelloIcon,
134+
TTSIcon,
135135
TwilioIcon,
136136
TypeformIcon,
137137
UpstashIcon,
@@ -142,11 +142,11 @@ import {
142142
WhatsAppIcon,
143143
WikipediaIcon,
144144
WordpressIcon,
145+
xIcon,
145146
YouTubeIcon,
146147
ZendeskIcon,
147148
ZepIcon,
148149
ZoomIcon,
149-
xIcon,
150150
} from '@/components/icons'
151151

152152
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
@@ -147,4 +147,4 @@
147147
"zep",
148148
"zoom"
149149
]
150-
}
150+
}

apps/sim/components/icons.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,12 +1237,7 @@ export function GoogleSlidesIcon(props: SVGProps<SVGSVGElement>) {
12371237

12381238
export function GoogleContactsIcon(props: SVGProps<SVGSVGElement>) {
12391239
return (
1240-
<svg
1241-
{...props}
1242-
viewBox='0 0 24 24'
1243-
fill='none'
1244-
xmlns='http://www.w3.org/2000/svg'
1245-
>
1240+
<svg {...props} viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'>
12461241
<path
12471242
d='M20.16 3H3.84C2.82 3 2 3.82 2 4.84v14.32C2 20.18 2.82 21 3.84 21h16.32c1.02 0 1.84-.82 1.84-1.84V4.84C22 3.82 21.18 3 20.16 3z'
12481243
fill='#F1F3F4'

apps/sim/tools/google_contacts/types.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ export interface GoogleContactsGetParams extends BaseGoogleContactsParams {
2828
export interface GoogleContactsListParams extends BaseGoogleContactsParams {
2929
pageSize?: number
3030
pageToken?: string
31-
sortOrder?: 'LAST_MODIFIED_ASCENDING' | 'LAST_MODIFIED_DESCENDING' | 'FIRST_NAME_ASCENDING' | 'LAST_NAME_ASCENDING'
31+
sortOrder?:
32+
| 'LAST_MODIFIED_ASCENDING'
33+
| 'LAST_MODIFIED_DESCENDING'
34+
| 'FIRST_NAME_ASCENDING'
35+
| 'LAST_NAME_ASCENDING'
3236
}
3337

3438
export interface GoogleContactsUpdateParams extends BaseGoogleContactsParams {

0 commit comments

Comments
 (0)