Skip to content

Commit

Permalink
experiment=new-katalog also triggers new catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
eronisko committed Dec 8, 2023
1 parent a90b452 commit 1b8a623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Middleware/SetExperiments.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SetExperiments
public function handle(Request $request, Closure $next): Response
{
$request->whenFilled('experiment', function ($experiment) {
if ($experiment === 'new-catalog') {
if ($experiment === 'new-catalog' || $experiment === 'new-katalog') {
return Experiment::set('new-catalog');
}
});
Expand Down

0 comments on commit 1b8a623

Please sign in to comment.