Skip to content

Commit 6f174cd

Browse files
authored
address type errors, bump charts (#2352)
1 parent 4971706 commit 6f174cd

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

helm-charts/opentaco/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies:
5757

5858
# Taco UI - React frontend
5959
- name: taco-ui
60-
version: "0.1.0"
60+
version: "0.1.1"
6161
repository: "oci://ghcr.io/diggerhq/helm-charts"
6262
condition: taco-ui.enabled
6363
tags:

helm-charts/taco-ui/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: taco-ui
33
description: Taco UI - Web-based frontend for OpenTaco infrastructure management platform
44
type: application
5-
version: 0.1.0
6-
appVersion: "v0.1.0"
5+
version: 0.1.1
6+
appVersion: "v0.1.1"
77
icon: https://raw.githubusercontent.com/diggerhq/digger/main/docs/logo/digger-logo.png
88

ui/src/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createRouter } from '@tanstack/react-router';
22
import { routeTree } from './routeTree.gen';
3-
import { terraformRoute } from '@/routes/manual/terraformWellknown';
3+
import { terraformRoute } from '@/routes/manual/terraformWellKnown';
44

55

66
const existingChildren = (routeTree as any).children ?? [] // internal but fine

ui/src/routes/__root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Sidebar, SidebarMenuButton, SidebarGroupContent, SidebarGroupLabel, Sid
1111
import { GitBranch, Folders, Waves, Settings, CreditCard, LogOut } from 'lucide-react';
1212
import globalCssUrl from '@/styles/global.css?url'
1313
import { Toaster } from '@/components/ui/toaster';
14-
import { getPublicServerConfig } from '@/lib/env.server';
14+
import { getPublicServerConfig, type Env } from '@/lib/env.server';
1515

1616

1717

ui/src/routes/_authenticated/_dashboard/dashboard/settings.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@ export const Route = createFileRoute(
99
const { user, organisationId, role } = context
1010
return { user, organisationId, role }
1111
},
12-
beforeLoad: ({ location, search }) => {
12+
beforeLoad: (({ location, search }) => {
1313
if (location.pathname === '/dashboard/settings') {
1414
throw redirect({
1515
to: '.',
1616
search
1717
})
1818
}
19-
return {}
20-
}
19+
}) as any
2120
})
2221

2322
function RouteComponent() {

ui/src/routes/app/settings.tokens.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const Route = createFileRoute('/app/settings/tokens')({
44
server: {
55
handlers: {
66
GET: async ({ request }) => {
7-
return new redirect({ to: '/dashboard/settings/tokens' })
7+
return redirect({ to: '/dashboard/settings/tokens' })
88
}
99
}
1010
}

0 commit comments

Comments
 (0)