diff --git a/packages/service/support/user/controller.ts b/packages/service/support/user/controller.ts index a76092770..9510abfc4 100644 --- a/packages/service/support/user/controller.ts +++ b/packages/service/support/user/controller.ts @@ -22,7 +22,10 @@ export async function getUserDetail({ }): Promise { const tmb = await (async () => { if (tmbId) { - return getTmbInfoByTmbId({ tmbId }); + try { + const result = await getTmbInfoByTmbId({ tmbId }); + return result; + } catch (error) {} } if (userId) { return getUserDefaultTeam({ userId });