task: cleanup/linting
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 4s
Build and Push Nightly CI Image / build_and_push (push) Successful in 4s
Bump Dependencies / update-dependencies (push) Successful in 1m11s

This commit is contained in:
Aidan 2025-02-24 23:31:48 -05:00
parent abfbe9cccc
commit 8616db7649
8 changed files with 12 additions and 9 deletions

View File

@ -53,7 +53,7 @@ export default function Dashboard() {
} }
} }
checkGitLinkStatus() checkGitLinkStatus().then(r => r)
}, []) }, [])
return ( return (

View File

@ -1,3 +1,5 @@
import React from "react";
export default function AccountLayout({ export default function AccountLayout({
children, children,
}: { }: {

View File

@ -9,6 +9,4 @@ export default async function Page() {
} else { } else {
redirect("/account/login") redirect("/account/login")
} }
return null
} }

View File

@ -1,6 +1,6 @@
"use client"; "use client";
import { useState } from "react" import React, { useState } from "react"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input" import { Input } from "@/components/ui/input"
import { Button } from "@/components/ui/button" import { Button } from "@/components/ui/button"

View File

@ -1,6 +1,6 @@
"use client"; "use client";
import { useState } from "react"; import React, { useState } from "react";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input"; import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";

View File

@ -1,6 +1,6 @@
"use client"; "use client";
import { useState } from "react" import React, { useState } from "react"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input" import { Input } from "@/components/ui/input"
import { Button } from "@/components/ui/button" import { Button } from "@/components/ui/button"

View File

@ -1,6 +1,6 @@
"use client"; "use client";
import { useState } from "react" import React, { useState } from "react"
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card" import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"
import { Label } from "@/components/ui/label" import { Label } from "@/components/ui/label"
import { Input } from "@/components/ui/input" import { Input } from "@/components/ui/input"
@ -60,4 +60,7 @@ export function CreateRepo() {
</CardContent> </CardContent>
</Card> </Card>
) )
} }
export default CreateRepo;

View File

@ -37,7 +37,7 @@ export const LinkedAccounts = () => {
} }
}; };
fetchGitStatus() fetchGitStatus().then(r => r)
}, []); }, []);
return ( return (