diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx index 3596cba15c..040d47dc45 100644 --- a/pages/integrations/index.tsx +++ b/pages/integrations/index.tsx @@ -212,24 +212,24 @@ export async function getServerSideProps(context) { type: "google_calendar", title: "Google Calendar", imageSrc: "integrations/google-calendar.png", - description: "For personal and business accounts", + description: "For personal and business calendars", }, { installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET), type: "office365_calendar", credential: credentials.find( (integration) => integration.type === "office365_calendar" ) || null, title: "Office 365 / Outlook.com Calendar", imageSrc: "integrations/office-365.png", - description: "For personal and business accounts", + description: "For personal and business calendars", }, { installed: !!(process.env.ZOOM_CLIENT_ID && process.env.ZOOM_CLIENT_SECRET), type: "zoom_video", credential: credentials.find( (integration) => integration.type === "zoom_video" ) || null, title: "Zoom", imageSrc: "integrations/zoom.png", - description: "For personal and business accounts", + description: "Video Conferencing", } ]; return { props: {integrations}, } -} \ No newline at end of file +}