join releasetypes on 'all' mode on artist page

This commit is contained in:
jeffvli
2026-01-03 02:09:59 -08:00
parent c67731f852
commit 5c14d20f78
2 changed files with 142 additions and 102 deletions
+1 -1
View File
@@ -12,6 +12,6 @@ const BaseGrid = ({ classNames, style, ...props }: GridProps) => {
BaseGrid.displayName = 'Grid';
export const Grid = memo(BaseGrid);
export const Grid = memo(BaseGrid) as unknown as typeof BaseGrid & { Col: typeof MantineGrid.Col };
(Grid as typeof Grid & { Col: typeof MantineGrid.Col }).Col = MantineGrid.Col;