Merge remote-tracking branch 'origin/staging' into add-report-to-collection-functionality

This commit is contained in:
dal 2025-08-22 10:28:36 -06:00
commit ff0828d75a
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,8 @@ export const assetTypeToRoute = (assetType: ShareAssetType, assetId: string) =>
return createBusterRoute({ route: BusterRoutes.APP_COLLECTIONS_ID, collectionId: assetId });
case 'chat':
return createBusterRoute({ route: BusterRoutes.APP_CHAT_ID, chatId: assetId });
case 'report':
return createBusterRoute({ route: BusterRoutes.APP_REPORTS_ID, reportId: assetId });
default:
console.warn('Asset type to route not found', assetType, assetId);
return '';