Merge pull request #5 from i701/feat/admin-devices-table
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 6m41s

refactor: remove unused import and improve conditional rendering in b…
This commit is contained in:
Abdulla Aidhaan
2025-07-01 07:00:56 +05:00
committed by GitHub
2 changed files with 1 additions and 3 deletions

View File

@ -1,4 +1,3 @@
import { redirect } from "next/navigation";
import { getServerSession } from "next-auth"; import { getServerSession } from "next-auth";
import { Suspense } from "react"; import { Suspense } from "react";
import { authOptions } from "@/app/auth"; import { authOptions } from "@/app/auth";

View File

@ -7,7 +7,6 @@ import { useState } from "react";
import { type SubmitHandler, useForm } from "react-hook-form"; import { type SubmitHandler, useForm } from "react-hook-form";
import { toast } from "sonner"; import { toast } from "sonner";
import { z } from "zod"; import { z } from "zod";
import { blockDevice as BlockDeviceFromOmada } from "@/actions/omada-actions";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { import {
Dialog, Dialog,
@ -70,7 +69,7 @@ export default function BlockDeviceDialog({
return ( return (
<div> <div>
{device.blocked ? ( {device.blocked && !admin ? (
<Button <Button
onClick={() => { onClick={() => {
setDisabled(true); setDisabled(true);