Files
headplane/app/routes/machines/dialogs/expire.tsx
T
2026-03-19 12:35:25 -04:00

27 lines
867 B
TypeScript

import Dialog, { DialogPanel } from "~/components/dialog";
import Text from "~/components/text";
import Title from "~/components/title";
import type { Machine } from "~/types";
interface ExpireProps {
machine: Machine;
isOpen: boolean;
setIsOpen: (isOpen: boolean) => void;
}
export default function Expire({ machine, isOpen, setIsOpen }: ExpireProps) {
return (
<Dialog isOpen={isOpen} onOpenChange={setIsOpen}>
<DialogPanel variant="destructive">
<Title>Expire {machine.givenName}</Title>
<Text>
This will disconnect the machine from your Tailnet. In order to reconnect, you will need
to re-authenticate from the device.
</Text>
<input name="action_id" type="hidden" value="expire" />
<input name="node_id" type="hidden" value={machine.id} />
</DialogPanel>
</Dialog>
);
}