1 import type { AuthLog } from '@proton/shared/lib/authlog';
4 appVersion: AuthLog['AppVersion'];
7 const AppVersionCell = ({ appVersion }: Props) => {
8 if (appVersion === null) {
9 return <span className="flex-1">-</span>;
12 const appVersionList = appVersion.split('@', 2);
13 if (appVersionList.length > 1) {
15 <span className="flex-1">
22 return <span className="flex-1">{appVersion}</span>;
25 export default AppVersionCell;