From 3d3ca9b94ac78dc0805f26ebc644bf23e52e0e30 Mon Sep 17 00:00:00 2001 From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com> Date: Mon, 22 Jun 2020 15:48:36 +0200 Subject: [PATCH] fix: argument misordering --- app/assets/javascripts/ui_models/application.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/ui_models/application.ts b/app/assets/javascripts/ui_models/application.ts index f636b416f..5d2f5a0ab 100644 --- a/app/assets/javascripts/ui_models/application.ts +++ b/app/assets/javascripts/ui_models/application.ts @@ -64,13 +64,13 @@ export class WebApplication extends SNApplication { deviceInterface, new SNWebCrypto(), namespace, - undefined, [ { swap: SNAlertService, with: AlertService } - ] + ], + undefined, ); this.$compile = $compile; this.scope = scope;