Add 'ENABLE_WIP_FEATURES' for live page.
Got tired of hijacking code. Didn't want to alter my account either.
This commit is contained in:
parent
7cf9cba3d6
commit
afe3f913ae
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ type Props = {
|
|||
|
||||
export default function LivestreamCurrentPage(props: Props) {
|
||||
const { user } = props;
|
||||
const canView = user && user.global_mod;
|
||||
const canView = process.env.ENABLE_WIP_FEATURES || (user && user.global_mod);
|
||||
|
||||
return (
|
||||
<Page>
|
||||
|
|
Loading…
Reference in a new issue