Skip to content

Commit

Permalink
fix: capitalize field name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed May 17, 2023
1 parent eb0cd0d commit e77f3fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/hostd/components/Config/fields.tsx
Expand Up @@ -380,7 +380,7 @@ export const fields: ConfigFields<typeof initialValues, Categories> = {
},
dnsNoIpPassword: {
type: 'text',
title: 'password',
title: 'Password',
category: 'DNS',
description: <>No-IP password.</>,
show: (values) => values.dnsProvider === 'noip',
Expand Down
1 change: 0 additions & 1 deletion apps/hostd/dialogs/VolumeDeleteDialog.tsx
Expand Up @@ -71,7 +71,6 @@ export function VolumeDeleteDialog({ trigger, open, onOpenChange }: Props) {

const onSubmit = useCallback(
async (values: typeof defaultValues) => {
console.log('hello')
const response = await volumeDelete.delete({
params: {
id: volume.data?.ID,
Expand Down
4 changes: 2 additions & 2 deletions libs/design-system/src/lib/toast.tsx
Expand Up @@ -68,14 +68,14 @@ export function buildToastOptions({
),
success: {
icon: (
<div className="!flex-none w-[20px]">
<div className="!flex-none w-5">
<CheckmarkOutline16 className="w-5 text-green-600" />
</div>
),
},
error: {
icon: (
<div className="!flex-none w-[20px]">
<div className="!flex-none w-5">
<CloseOutline16 className="w-5 text-red-600" />
</div>
),
Expand Down

0 comments on commit e77f3fa

Please sign in to comment.