main
tt 9 months ago
parent 4dcaa2202a
commit 747e8f413f

@ -44,7 +44,6 @@ const PageComponent = ({
body: JSON.stringify(body)
})
const result = await response.json();
console.log(result);
setShowLoadingModal(false);
if (result.data) {
const video = {

@ -20,8 +20,6 @@ export async function POST(req: Request, res: Response) {
authorization: `Bearer ${apiKey}`
},
}).then(v => v.json()).catch(err => console.log(err));
console.log("========");
console.log(result);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" },
status: 200

@ -14,9 +14,9 @@ const navigation = {
name: 'Official',
href: 'https://sorawebui.com',
icon: () => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor"
className="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
<path strokeLinecap="round" strokeLinejoin="round"
d="M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6 9 6m-1.5 12V10.332A48.36 48.36 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12V6.75Z"/>
</svg>
),

Loading…
Cancel
Save