From 3118f7132070acc4da1c515eedb58dd0a2414dbf Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Wed, 18 Jun 2025 21:44:11 -0600 Subject: [PATCH] fix linting (whitespace only) --- src/views/DeepLinkRedirectView.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/DeepLinkRedirectView.vue b/src/views/DeepLinkRedirectView.vue index 74ea25d7..8d2cb08c 100644 --- a/src/views/DeepLinkRedirectView.vue +++ b/src/views/DeepLinkRedirectView.vue @@ -122,10 +122,10 @@ export default class DeepLinkRedirectView extends Vue { // If pathParam is an array (catch-all parameter), join it const fullPath = Array.isArray(pathParam) ? pathParam.join("/") : pathParam; - + // Get query parameters from the route const queryParams = this.$route.query; - + // Build query string if there are query parameters let queryString = ""; if (Object.keys(queryParams).length > 0) { @@ -140,10 +140,10 @@ export default class DeepLinkRedirectView extends Vue { }); queryString = "?" + searchParams.toString(); } - + // Combine path with query parameters const fullPathWithQuery = fullPath + queryString; - + this.destinationUrl = fullPathWithQuery; this.deepLinkUrl = `timesafari://${fullPathWithQuery}`; this.webUrl = `${APP_SERVER}/${fullPathWithQuery}`;