Merge pull request #714 from SkynetLabs/fix-accounts-build

fix a dev change that stubbed most of account frontend endpoints
This commit is contained in:
Ivaylo Novakov 2021-05-04 11:37:44 +02:00 committed by GitHub
commit 89432b1955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import ky from "ky/umd";
const isProduction = false; // process.env.NODE_ENV === "production";
const isProduction = process.env.NODE_ENV === "production";
export default function authServerSideProps(getServerSideProps) {
return function authenticate(context) {