Commit 1e553ce2 authored by Alper Akgun's avatar Alper Akgun

Merge branch 'a_akgun-experiment-fix-typo' into 'master'

Fix typo in variable name initialization

See merge request gitlab-org/gitlab!77066
parents dbf01795 54526225
......@@ -25,7 +25,7 @@ export function stubExperiments(experiments = {}) {
window.gon.experiment = window.gon.experiment || {};
// Preferred
window.gl = window.gl || {};
window.gl.experiments = window.gl.experiemnts || {};
window.gl.experiments = window.gl.experiments || {};
Object.entries(experiments).forEach(([name, variant]) => {
const experimentData = { experiment: name, variant };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment