interface UpdateNotificationProps { updatedBy: "user" | "llm" | "system"; onRefresh: () => void; onDismiss: () => void; } export function UpdateNotification({ updatedBy, onRefresh, onDismiss, }: UpdateNotificationProps) { const source = updatedBy === "llm" ? "AI assistant" : "another session"; return (
This file was updated by {source}.