Skip to content

Commit

Permalink
chore: remove oauth buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
paabloLC committed Nov 26, 2024
1 parent 286b323 commit 5a7f848
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions ui/components/auth/oss/auth-form.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"use client";

import { zodResolver } from "@hookform/resolvers/zod";
import { Icon } from "@iconify/react";
import { Button, Checkbox, Divider, Link } from "@nextui-org/react";
import { Checkbox, Link } from "@nextui-org/react";
import { useRouter } from "next/navigation";
import { useForm } from "react-hook-form";
import { z } from "zod";
Expand Down Expand Up @@ -236,7 +235,7 @@ export const AuthForm = ({
</form>
</Form>

{type === "sign-in" && (
{/* {type === "sign-in" && (
<>
<div className="flex items-center gap-4 py-2">
<Divider className="flex-1" />
Expand Down Expand Up @@ -266,7 +265,7 @@ export const AuthForm = ({
</Button>
</div>
</>
)}
)} */}
{type === "sign-in" ? (
<p className="text-center text-small">
Need to create an account?&nbsp;
Expand Down
10 changes: 5 additions & 5 deletions ui/components/ui/sidebar/sidebar-items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ export const sectionItems: SidebarItem[] = [
href: "/compliance",
icon: "fluent-mdl2:compliance-audit",
title: "Compliance",
endContent: (
<Chip size="sm" variant="flat">
New
</Chip>
),
// endContent: (
// <Chip size="sm" variant="flat">
// New
// </Chip>
// ),
},
// {
// key: "services",
Expand Down

0 comments on commit 5a7f848

Please sign in to comment.