We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77369a1 commit a19ccabCopy full SHA for a19ccab
1 file changed
apps/web/app/(use-page-wrapper)/apps/installed/[category]/page.tsx
@@ -45,11 +45,13 @@ const InstalledAppsWrapper = async ({ params }: PageProps) => {
45
createRouterCaller(appsRouter),
46
]);
47
48
- const connectedCalendars = await calendarsCaller.connectedCalendars();
49
- const installedCalendars = await appsCaller.integrations({
50
- variant: "calendar",
51
- onlyInstalled: true,
52
- });
+ const [connectedCalendars, installedCalendars] = await Promise.all([
+ calendarsCaller.connectedCalendars(),
+ appsCaller.integrations({
+ variant: "calendar",
+ onlyInstalled: true,
53
+ }),
54
+ ]);
55
56
return (
57
<InstalledApps
0 commit comments