delete commented out code

This commit is contained in:
Daniel Roth 2026-02-27 17:06:17 +00:00
parent cf821c9150
commit 2ae1eba6db

View file

@ -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,