+ {/* Hero */}
+
+
+
+
+ {profile.name}
+
+
+
+ {getBrowserDisplayName(profile.browser)}{" "}
+ {profile.version}
+
+
+ {releaseLabel}
+
+ {isRunning && (
+
+ {t("common.status.running")}
+
+ )}
+ {profile.ephemeral && (
+
+ {t("profiles.ephemeralBadge")}
+
+ )}
+ {showCrossOs && profile.host_os && (
+
+
+ {getOSDisplayName(profile.host_os)}
+
+ )}
+
+
+
+
+ {/* Profile ID */}
+
+
+ ID
+
+
+ {profile.id}
+
+
+
+
+ {/* Network & Organization */}
+
+
+
+
+
+
+
+ {/* Sync */}
+
+
+
+ {t("profileInfo.fields.syncStatus")}
+
+
{syncLabel}
+
+
+ {syncMode === "Disabled"
+ ? t("sync.mode.disabled")
+ : syncStatus?.status === "syncing"
+ ? t("common.status.syncing")
+ : t("common.status.synced")}
+
+
+
+ {/* Tags */}
+ {hasTags && (
+
+
+ {t("profileInfo.fields.tags")}
-
{field.value}
-
- ))}
+
+ {profile.tags?.map((tag) => (
+
+ {tag}
+
+ ))}
+
+
+ )}
+
+ {/* Note */}
+ {hasNote && (
+
+
+ {t("profileInfo.fields.note")}
+
+
+ {profile.note}
+
+
+ )}
+
+ {/* Team */}
+ {profile.created_by_email && (
+
+
+ {t("sync.team.title")}
+
+
+ {t("sync.team.createdBy", {
+ email: profile.created_by_email,
+ })}
+
+
+ )}