From b048abcd1ae71b4f7769129368b166110f6f0a45 Mon Sep 17 00:00:00 2001 From: simon-debruijn Date: Thu, 5 Sep 2024 14:19:32 +0200 Subject: [PATCH] Move uitpas option last for entry page --- resources/ts/Components/IntegrationTypes.tsx | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/ts/Components/IntegrationTypes.tsx b/resources/ts/Components/IntegrationTypes.tsx index 8b4570dfd..3eeb247f8 100644 --- a/resources/ts/Components/IntegrationTypes.tsx +++ b/resources/ts/Components/IntegrationTypes.tsx @@ -21,18 +21,6 @@ export const integrationTypesIcons = { }; export const getIntegrationTypesInfo = (t: TFunction) => [ - { - Icon: IconUiTPAS, - image: , - title: t("home.integration_types.uitpas_api.title"), - description: t("home.integration_types.uitpas_api.description"), - features: [ - t("home.integration_types.uitpas_api.features.0"), - t("home.integration_types.uitpas_api.features.1"), - t("home.integration_types.uitpas_api.features.2"), - ], - type: IntegrationType.UiTPAS, - }, { Icon: IconEntryApi, image: ( @@ -75,6 +63,18 @@ export const getIntegrationTypesInfo = (t: TFunction) => [ ], type: IntegrationType.Widgets, }, + { + Icon: IconUiTPAS, + image: , + title: t("home.integration_types.uitpas_api.title"), + description: t("home.integration_types.uitpas_api.description"), + features: [ + t("home.integration_types.uitpas_api.features.0"), + t("home.integration_types.uitpas_api.features.1"), + t("home.integration_types.uitpas_api.features.2"), + ], + type: IntegrationType.UiTPAS, + }, ]; export const useIntegrationTypesInfo = () => {