Cleanup
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 2m51s
Add copyright notice / copyright_notice (pull_request) Successful in 3m52s
Playwright Tests / test (pull_request) Successful in 8m30s

This commit is contained in:
Manuel Bustillo 2024-11-11 08:01:01 +01:00
parent 9cb3168097
commit 88bd5fc43b
2 changed files with 0 additions and 3 deletions

View File

@ -1,8 +1,6 @@
/* Copyright (C) 2024 Manuel Bustillo*/ /* Copyright (C) 2024 Manuel Bustillo*/
import { CheckIcon, XMarkIcon } from '@heroicons/react/24/outline';
import React, { useState } from 'react'; import React, { useState } from 'react';
import { classNames } from '../button';
export default function InlineTextField({ initialValue, onChange }: { initialValue: string, onChange: (value: string) => void }) { export default function InlineTextField({ initialValue, onChange }: { initialValue: string, onChange: (value: string) => void }) {
const [editing, setEditing] = useState(false); const [editing, setEditing] = useState(false);

View File

@ -45,7 +45,6 @@ export default function guestsTable() {
'X-CSRF-TOKEN': getCsrfToken(), 'X-CSRF-TOKEN': getCsrfToken(),
} }
}) })
// .then(() => loadGuests())
.catch((error) => console.error(error)); .catch((error) => console.error(error));
} }