mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
delete commented out code
This commit is contained in:
parent
cf821c9150
commit
2ae1eba6db
1 changed files with 0 additions and 51 deletions
|
|
@ -1,54 +1,3 @@
|
|||
// "use client"
|
||||
|
||||
// import { useState } from "react";
|
||||
// import {
|
||||
// DropdownMenu,
|
||||
// DropdownMenuContent,
|
||||
// DropdownMenuTrigger,
|
||||
// } from "@/app/shadcn_components/ui/dropdown-menu";
|
||||
// import { Button } from "@/app/shadcn_components/ui/button";
|
||||
// import { Checkbox } from "@/app/shadcn_components/ui/checkbox";
|
||||
|
||||
// export interface RecommendationsOptionsProps {
|
||||
// onApply: (value: boolean) => Promise<void> | void;
|
||||
// disabled?: boolean;
|
||||
// }
|
||||
|
||||
// export function RecommendationsOptions({
|
||||
// onApply, disabled = false
|
||||
// }: RecommendationsOptionsProps) {
|
||||
// console.log("Generating Recommendations button");
|
||||
|
||||
// const [isApplying, setIsApplying] = useState(false);
|
||||
|
||||
// return (
|
||||
// <DropdownMenu
|
||||
// onOpenChange={(open) => {
|
||||
// if (open) {
|
||||
// console.log("dropdown menu is open");
|
||||
// }
|
||||
// }}
|
||||
// >
|
||||
// <DropdownMenuTrigger asChild>
|
||||
// <Button
|
||||
// variant="outline"
|
||||
// size="sm"
|
||||
// disabled={ disabled || isApplying }
|
||||
// className={`
|
||||
// rounded-md px-3 py-2 text-sm font-medium transition
|
||||
// ${
|
||||
// disabled
|
||||
// ? "bg-gray-200 text-gray-400 cursor-not-allowed"
|
||||
// : "bg-brandblue text-white hover:bg-hoverblue"
|
||||
// }`}
|
||||
// >
|
||||
// Calculate Recommendations
|
||||
// </Button>
|
||||
// </DropdownMenuTrigger>
|
||||
// </DropdownMenu>
|
||||
// )
|
||||
// }
|
||||
|
||||
import { useState } from "react";
|
||||
import {
|
||||
DropdownMenu,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue