File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
apps/app/src/pages/admin/user-group-detail Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ AdminUserGroupDetailPage.getLayout = createAdminPageLayout<Props>({
4848 title : ( _p , t ) => t ( 'user_group_management.user_group_management' ) ,
4949} ) ;
5050
51-
5251export const getServerSideProps : GetServerSideProps < Props > = async (
5352 context : GetServerSidePropsContext ,
5453) => {
@@ -63,7 +62,10 @@ export const getServerSideProps: GetServerSideProps<Props> = async (
6362 } ,
6463 } satisfies { props : PageProps } ;
6564
66- return mergeGetServerSidePropsResults ( commonResult , UserGroupDetailPropsFragment ) ;
65+ return mergeGetServerSidePropsResults (
66+ commonResult ,
67+ UserGroupDetailPropsFragment ,
68+ ) ;
6769} ;
6870
6971export default AdminUserGroupDetailPage ;
You can’t perform that action at this time.
0 commit comments