11 Commits

3 changed files with 7195 additions and 5854 deletions

@ -32,7 +32,7 @@
"clsx": "^2.1.0", "clsx": "^2.1.0",
"cmdk": "^1.0.0", "cmdk": "^1.0.0",
"fuse.js": "^7.0.0", "fuse.js": "^7.0.0",
"lucide-react": "^0.424.0", "lucide-react": "^0.451.0",
"mcutils-library": "^1.3.1", "mcutils-library": "^1.3.1",
"moment": "^2.30.1", "moment": "^2.30.1",
"next": "14.2.5", "next": "14.2.5",
@ -44,7 +44,7 @@
"react-dom": "^18", "react-dom": "^18",
"react-spinners": "^0.14.0", "react-spinners": "^0.14.0",
"react-syntax-highlighter": "^15.5.0", "react-syntax-highlighter": "^15.5.0",
"react-use-websocket": "4.8.1", "react-use-websocket": "4.9.0",
"read-file": "^0.2.0", "read-file": "^0.2.0",
"remark-gfm": "^4.0.0", "remark-gfm": "^4.0.0",
"remote-mdx": "^0.0.8", "remote-mdx": "^0.0.8",

12817
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

@ -12,6 +12,6 @@ export async function createHaste(content: string): Promise<string> {
body: content, body: content,
}); });
const { id } = await response.json(); const { key } = await response.json();
return `${PASTE_URL}/${id}`; return `${PASTE_URL}/${key}`;
} }