fix: update version history messages for clarity by removing unnecessary punctuation

This commit is contained in:
Anish Sarkar 2026-04-03 10:56:43 +05:30
parent 4ca0787ab7
commit ca250910c0

View file

@ -165,8 +165,8 @@ function VersionHistoryPanel({ documentId }: { documentId: number }) {
if (versions.length === 0) {
return (
<div className="flex flex-1 flex-col items-center justify-center text-muted-foreground">
<p className="text-sm">No version history available yet.</p>
<p className="text-xs mt-1">Versions are created when file content changes.</p>
<p className="text-sm">No version history available yet</p>
<p className="text-xs mt-1">Versions are created when file content changes</p>
</div>
);
}