limiting pilot data for unauthenticated users

This commit is contained in:
2025-03-18 09:51:37 -05:00
parent 09f19b178f
commit e52d6191c9
12 changed files with 269 additions and 203 deletions

View File

@@ -0,0 +1,8 @@
import { FormMode } from "../../enums/formMode";
import { Pilot } from "../pilots/Pilot.interface";
export interface PilotCardProps {
pilots: Pilot[];
onDelete: (entryId: string) => void;
onOpenCloseForm: (formMode: FormMode, id: string) => void;
}