Skip to content

Commit f0269a9

Browse files
authored
Settings Page bug fix (#3)
1 parent 4027dc0 commit f0269a9

4 files changed

Lines changed: 32 additions & 25 deletions

File tree

apps/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@hookform/resolvers": "^4.1.3",
14+
"@hookform/resolvers": "^5.0.1",
1515
"@repo/ui": "workspace:*",
1616
"@tabler/icons-react": "^3.31.0",
1717
"@tanstack/react-query": "^5.75.2",
@@ -31,7 +31,7 @@
3131
"sonner": "^1.7.4",
3232
"superjson": "^2.2.2",
3333
"usehooks-ts": "^3.1.1",
34-
"zod": "^3.24.3"
34+
"zod": "^3.24.4"
3535
},
3636
"devDependencies": {
3737
"@eslint/js": "^9.26.0",

apps/web/src/pages/dashboard/settings/smtp-settings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ export function SmtpSettings() {
209209
</FormControl>
210210
<SelectContent>
211211
<SelectItem value="STARTTLS">STARTTLS</SelectItem>
212-
<SelectItem value="SSL/TLS">SSL/TLS</SelectItem>
213-
<SelectItem value="None">None</SelectItem>
212+
<SelectItem value="SSL_TLS">SSL/TLS</SelectItem>
213+
<SelectItem value="NONE">None</SelectItem>
214214
</SelectContent>
215215
</Select>
216216
<FormDescription>

packages/ui/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
"outDir": "dist",
55
"baseUrl": ".",
66
"paths": {
7-
"@/*": ["./src/*"]
7+
"@/*": ["./src/*"],
8+
"react": ["./node_modules/@types/react"]
89
},
910
"declaration": true,
1011
"module": "ESNext",
1112
"target": "ESNext",
12-
"moduleResolution": "Node"
13+
"moduleResolution": "Node",
14+
"skipLibCheck": true
1315
},
1416
"include": ["src/**/*"],
1517
"exclude": ["node_modules", "dist"]

pnpm-lock.yaml

Lines changed: 24 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)