Skip to content

Commit 75d20b9

Browse files
authored
Merge pull request #2816 from trycompai/chas/integration-dropdown
CS-369 [Bug] - Unable to set filters or exclusion in the GWS integration due to dropdown
2 parents 8928ca6 + 10d60bb commit 75d20b9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

apps/app/src/app/(app)/[orgId]/integrations/[slug]/components/AccountSettingsSheet.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
22

33
import type { IntegrationProvider } from '@/hooks/use-integration-platform';
4-
import { Sheet, SheetBody, SheetContent, SheetHeader, SheetTitle } from '@trycompai/ui/sheet';
4+
import { Sheet, SheetBody, SheetContent, SheetHeader, SheetTitle } from '@trycompai/design-system';
55
import { AccountSettingsOAuthBody } from './account-settings-oauth';
66
import { AwsAccountSettingsBody } from './aws-account-settings-body';
77

@@ -26,12 +26,12 @@ export function AccountSettingsSheet({
2626

2727
return (
2828
<Sheet open={open} onOpenChange={onOpenChange}>
29-
<SheetContent side="right" style={{ maxWidth: 380 }} className="flex flex-col p-0">
30-
<SheetHeader className="shrink-0 border-b px-5 py-4">
31-
<SheetTitle className="text-sm font-semibold">Account Settings</SheetTitle>
29+
<SheetContent side="right" style={{ maxWidth: 380 }}>
30+
<SheetHeader>
31+
<SheetTitle>Account Settings</SheetTitle>
3232
<p className="text-xs text-muted-foreground mt-0.5">{provider.name}</p>
3333
</SheetHeader>
34-
<SheetBody className="px-5">
34+
<SheetBody>
3535
{isAws ? (
3636
<AwsAccountSettingsBody
3737
open={open}

0 commit comments

Comments
 (0)