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";
|
||||
|
||||
export async function scheduleBeforeEnter(to, from) {
|
||||
const isSchedulingEnabled = true;
|
||||
// experimentMixin.methods.hasSettingEqualTo(
|
||||
// experimentSettings.USE_SCHEDULING_PAGE,
|
||||
// "true"
|
||||
// );
|
||||
const isSchedulingEnabled = experimentMixin.methods.hasSettingEqualTo(
|
||||
experimentSettings.USE_SCHEDULING_PAGE,
|
||||
"true"
|
||||
);
|
||||
|
||||
if (isSchedulingEnabled) {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue