Remove experiment hardcoding
This commit is contained in:
parent
85e28701f3
commit
4a168a1ba0
1 changed files with 4 additions and 5 deletions
|
|
@ -3,11 +3,10 @@ import { experimentSettings } from "@/constants/experiments";
|
||||||
import { routeData } from "@/router/constants/routes";
|
import { routeData } from "@/router/constants/routes";
|
||||||
|
|
||||||
export async function scheduleBeforeEnter(to, from) {
|
export async function scheduleBeforeEnter(to, from) {
|
||||||
const isSchedulingEnabled = true;
|
const isSchedulingEnabled = experimentMixin.methods.hasSettingEqualTo(
|
||||||
// experimentMixin.methods.hasSettingEqualTo(
|
experimentSettings.USE_SCHEDULING_PAGE,
|
||||||
// experimentSettings.USE_SCHEDULING_PAGE,
|
"true"
|
||||||
// "true"
|
);
|
||||||
// );
|
|
||||||
|
|
||||||
if (isSchedulingEnabled) {
|
if (isSchedulingEnabled) {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue