You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/copilot/copilot.tsx
+26-33Lines changed: 26 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,7 @@ export function Copilot() {
238
238
<divclassName='relative flex h-full flex-col'>
239
239
{/* Sticky Header with API Keys (only for hosted) */}
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/environment/environment.tsx
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -707,15 +707,18 @@ export function EnvironmentVariables({
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/file-uploads/file-uploads.tsx
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/settings-navigation/settings-navigation.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,7 @@ export function SettingsNavigation({
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/subscription/components/cancel-subscription/cancel-subscription.tsx
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/team-management/components/remove-member-dialog/remove-member-dialog.tsx
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,8 @@ export function RemoveMemberDialog({
37
37
<DialogDescription>
38
38
{isSelfRemoval
39
39
? 'Are you sure you want to leave this organization? You will lose access to all team resources.'
40
-
: `Are you sure you want to remove ${memberName} from the team?`}
40
+
: `Are you sure you want to remove ${memberName} from the team?`}{' '}
41
+
<spanclassName='text-red-500 dark:text-red-500'>This action cannot be undone.</span>
41
42
</DialogDescription>
42
43
</DialogHeader>
43
44
@@ -68,7 +69,7 @@ export function RemoveMemberDialog({
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/team-management/components/team-members/team-members.tsx
0 commit comments