+
⚠️ Can't connect with the App API
+ {isVercel && vercelInfo}
+ {appReady.ready ? null : (
+
+
Environment variables validation is incorrect
+
{appReady.error.message}
+
+ )}
+ You may see this error because:
+
+ - Internet connection has been lost
+ - Application installation process is still in progress.
+ -
+ Application is misconfigured. If you would like to know more how auth configuration is
+ kept,{" "}
+
+ go to APL documentation
+
+ .
+
+
+
+ );
+}
diff --git a/apps/slack/src/components/LoadingPage/LoadingPage.tsx b/apps/slack/src/components/LoadingPage/LoadingPage.tsx
new file mode 100644
index 0000000..02b98e9
--- /dev/null
+++ b/apps/slack/src/components/LoadingPage/LoadingPage.tsx
@@ -0,0 +1,20 @@
+import { CircularProgress, Typography } from "@material-ui/core";
+import React from "react";
+
+import { useStyles } from "./styles";
+
+function LoadingPage() {
+ const classes = useStyles();
+
+ return (
+