docs: 🐛 wrong condition

Signed-off-by: slumbering <slumbering.pierrot@gmail.com>
This commit is contained in:
slumbering 2021-06-14 18:42:15 +02:00
parent 8c181a2d46
commit 1ffb108323

View File

@ -141,7 +141,7 @@ function DocPage(props) {
// CUSTOM DOCPAGE
// Do not use Github authentication when in local env or Netlify deploy preview
if (typeof window === "undefined" ||
(typeof window !== "undefined" && (window?.location?.hostname !== "localhost" || !window?.location?.hostname.includes('deploy-preview')))) {
(typeof window !== "undefined" && window?.location?.hostname !== "localhost" && !window.location.hostname.includes('deploy'))) {
const [isUserAuthorized, setIsUserAuthorized] = useState()
const [isLoading, setIsLoading] = useState(true)
const [redirectState, setRedirectState] = useState()