Skip to content

Commit cc757a7

Browse files
committed
fix: update warning message color in CloudSyncDialog
- Changed the warning message color from destructive red to yellow for better visibility when no local server configurations are found, prompting users to add at least one server before uploading to the cloud.
1 parent 03d3f2a commit cc757a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tauri-app/src/components/manage/team/CloudSyncDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export function TeamCloudSyncDialog({
145145

146146
<div className="grid grid-cols-2 gap-3">
147147
{localServersCount === 0 && (
148-
<div className="text-sm text-destructive font-semibold col-span-2 text-center">
148+
<div className="text-sm text-yellow-600 font-semibold col-span-2 text-center">
149149
No local server configurations found. Please add at least one server before uploading to cloud.
150150
</div>
151151
)}

0 commit comments

Comments
 (0)