Skip to content

Commit

Permalink
add sharable links, some refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
gvkhna committed May 30, 2024
1 parent 62f08ee commit eacc80a
Show file tree
Hide file tree
Showing 54 changed files with 1,160 additions and 192 deletions.
2 changes: 1 addition & 1 deletion src/components/link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface LinkProps extends HTMLProps<HTMLAnchorElement> {
href: string
}

export default function Link(props: LinkProps) {
export function Link(props: LinkProps) {
const {children, to, href, className: classNameProp, ...rest} = props

let linkHref = ''
Expand Down
55 changes: 0 additions & 55 deletions src/components/nav-link.tsx

This file was deleted.

1 change: 1 addition & 0 deletions src/db/migrations/0001_needy_mimic.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `builds` ADD `public` integer DEFAULT false NOT NULL;
Loading

0 comments on commit eacc80a

Please sign in to comment.