Skip to content

Commit

Permalink
chore: add kodiak file
Browse files Browse the repository at this point in the history
  • Loading branch information
brunosllz committed Aug 30, 2023
1 parent fe1a0f7 commit 9ec295a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
7 changes: 7 additions & 0 deletions .kodiak.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# .kodiak.toml
version = 1

[update]
always = true

merge.delete_branch_on_merge = true
6 changes: 3 additions & 3 deletions src/components/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import * as React from 'react'

import { cn } from '@/lib/utils'
import { Icons } from './ui/icons'
import { Button } from './ui/button'
import { Input } from './ui/input'
import { Label } from './ui/label'
import { twMerge } from 'tailwind-merge'

type UserAuthFormProps = React.HTMLAttributes<HTMLDivElement>

Expand All @@ -23,7 +23,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
}

return (
<div className={cn('grid gap-6', className)} {...props}>
<div className={twMerge('grid gap-6', className)} {...props}>
<form onSubmit={onSubmit}>
<div className="grid gap-2">
<div className="grid gap-1">
Expand Down Expand Up @@ -53,7 +53,7 @@ export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
<span className="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background text-muted-foreground px-2">
<span className="bg-background px-2 text-muted-foreground">
Or continue with
</span>
</div>
Expand Down
6 changes: 0 additions & 6 deletions src/lib/utils.ts

This file was deleted.

0 comments on commit 9ec295a

Please sign in to comment.