mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-12 07:31:54 +02:00
✨ Add support for uploading profile pictures (#1332)
This commit is contained in:
parent
cf32e0da65
commit
32ba10b28a
24 changed files with 1615 additions and 65 deletions
|
@ -9,7 +9,8 @@
|
|||
},
|
||||
"exports": {
|
||||
".": "./src/lib/utils.ts",
|
||||
"./*": "./src/*.tsx"
|
||||
"./*": "./src/*.tsx",
|
||||
"./hooks/*": "./src/hooks/*.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@radix-ui/react-accordion": "^1.1.2",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Inspired by react-hot-toast library
|
||||
import * as React from "react";
|
||||
|
||||
import type { ToastActionElement, ToastProps } from "./toast";
|
||||
import type { ToastActionElement, ToastProps } from "../toast";
|
||||
|
||||
const TOAST_LIMIT = 1;
|
||||
const TOAST_REMOVE_DELAY = 1000000;
|
|
@ -7,7 +7,7 @@ import {
|
|||
ToastTitle,
|
||||
ToastViewport,
|
||||
} from "./toast";
|
||||
import { useToast } from "./use-toast";
|
||||
import { useToast } from "./hooks/use-toast";
|
||||
|
||||
export function Toaster() {
|
||||
const { toasts } = useToast();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue