interface ActionButtonsProps { isUploading: boolean isSecretEmpty: boolean hasPendingOrErrors: boolean allDone: boolean hasErrors: boolean onUpload: () => void onCancel: () => void onReset: () => void } export default function ActionButtons({ isUploading, isSecretEmpty, hasPendingOrErrors, allDone, hasErrors, onUpload, onCancel, onReset, }: ActionButtonsProps) { return (