Bugfix (change order to load preconfig)

Signed-off-by: Dennis Schmitt <dennis.schmitt@pta.de>
diff --git a/projects/grid-failure-information-app/src/app/app.component.ts b/projects/grid-failure-information-app/src/app/app.component.ts
index 5d2fae9..94f678a 100644
--- a/projects/grid-failure-information-app/src/app/app.component.ts
+++ b/projects/grid-failure-information-app/src/app/app.component.ts
@@ -53,8 +53,8 @@
    */
   ngOnInit() {
     this.appSandbox.setupLanguage();
-    this.appSandbox.setupPreConfig();
     this._extractTokenFromParameters();
+    this.appSandbox.setupPreConfig();
     this._registerEvents();
   }