refactor: update SharedLinks and ArchivedChats to use desktopOnly instead of hideOnMobile; remove unused DataTableColumnHeader component

This commit is contained in:
Marco Beretta 2025-09-24 00:35:29 +02:00
parent 76b34775f0
commit a3de2245b1
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
5 changed files with 9 additions and 74 deletions

View file

@ -8,6 +8,8 @@ export type TableColumn<TData, TValue> = ColumnDef<TData, TValue> & {
mobileSize?: string | number;
minWidth?: string | number;
priority?: number;
className?: string;
desktopOnly?: boolean;
};
};