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
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:
parent
abfbe9cccc
commit
8616db7649
@ -53,7 +53,7 @@ export default function Dashboard() {
|
||||
}
|
||||
}
|
||||
|
||||
checkGitLinkStatus()
|
||||
checkGitLinkStatus().then(r => r)
|
||||
}, [])
|
||||
|
||||
return (
|
||||
|
@ -1,3 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function AccountLayout({
|
||||
children,
|
||||
}: {
|
||||
|
@ -9,6 +9,4 @@ export default async function Page() {
|
||||
} else {
|
||||
redirect("/account/login")
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react"
|
||||
import React, { useState } from "react"
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||||
import { Input } from "@/components/ui/input"
|
||||
import { Button } from "@/components/ui/button"
|
||||
|
@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import React, { useState } from "react";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react"
|
||||
import React, { useState } from "react"
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||||
import { Input } from "@/components/ui/input"
|
||||
import { Button } from "@/components/ui/button"
|
||||
|
@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react"
|
||||
import React, { useState } from "react"
|
||||
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"
|
||||
import { Label } from "@/components/ui/label"
|
||||
import { Input } from "@/components/ui/input"
|
||||
@ -60,4 +60,7 @@ export function CreateRepo() {
|
||||
</CardContent>
|
||||
</Card>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default CreateRepo;
|
||||
|
||||
|
@ -37,7 +37,7 @@ export const LinkedAccounts = () => {
|
||||
}
|
||||
};
|
||||
|
||||
fetchGitStatus()
|
||||
fetchGitStatus().then(r => r)
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
Loading…
x
Reference in New Issue
Block a user