= ({ flight, locale }) => {
+ const { t } = useTranslation();
+ const timestamp = formatUpdated(getUpdated(flight));
+ const shareUrl = typeof window !== "undefined" ? window.location.href : "";
+
+ return (
+
+
+
+ {t("SHARED.LAST-UPDATE")}:
+
+ {timestamp}
+
+
+
+ );
+};