From 6edd2a81e5797e2b973912c9487ae46b91e9ff33 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Wed, 22 Jan 2025 23:45:03 -0600 Subject: [PATCH] refactor: lint --- apps/dokploy/lib/languages.ts | 2 +- apps/dokploy/templates/templates.ts | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/dokploy/lib/languages.ts b/apps/dokploy/lib/languages.ts index fa527ed6..a19c9589 100644 --- a/apps/dokploy/lib/languages.ts +++ b/apps/dokploy/lib/languages.ts @@ -18,7 +18,7 @@ export const Languages = { norwegian: { code: "no", name: "Norsk" }, azerbaijani: { code: "az", name: "Azərbaycan" }, indonesian: { code: "id", name: "Bahasa Indonesia" }, - malayalam: { code: "ml", name: "മലയാളം" } + malayalam: { code: "ml", name: "മലയാളം" }, }; export type Language = keyof typeof Languages; diff --git a/apps/dokploy/templates/templates.ts b/apps/dokploy/templates/templates.ts index 0f93e69d..1bdb1ec1 100644 --- a/apps/dokploy/templates/templates.ts +++ b/apps/dokploy/templates/templates.ts @@ -1316,7 +1316,8 @@ export const templates: TemplateData[] = [ id: "glance", name: "Glance", version: "latest", - description: "A self-hosted dashboard that puts all your feeds in one place. Features RSS feeds, weather, bookmarks, site monitoring, and more in a minimal, fast interface.", + description: + "A self-hosted dashboard that puts all your feeds in one place. Features RSS feeds, weather, bookmarks, site monitoring, and more in a minimal, fast interface.", logo: "glance.png", links: { github: "https://github.com/glanceapp/glance", @@ -1329,7 +1330,8 @@ export const templates: TemplateData[] = [ id: "homarr", name: "Homarr", version: "latest", - description: "A sleek, modern dashboard that puts all your apps and services in one place with Docker integration.", + description: + "A sleek, modern dashboard that puts all your apps and services in one place with Docker integration.", logo: "homarr.png", links: { github: "https://github.com/homarr-labs/homarr", @@ -1339,5 +1341,4 @@ export const templates: TemplateData[] = [ tags: ["dashboard", "monitoring"], load: () => import("./homarr/index").then((m) => m.generate), }, - ];