Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Siumauricio committed Jan 23, 2025
1 parent fe5b878 commit 6edd2a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/dokploy/lib/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
7 changes: 4 additions & 3 deletions apps/dokploy/templates/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -1339,5 +1341,4 @@ export const templates: TemplateData[] = [
tags: ["dashboard", "monitoring"],
load: () => import("./homarr/index").then((m) => m.generate),
},

];

0 comments on commit 6edd2a8

Please sign in to comment.