Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update languages #59

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -491,11 +491,18 @@ const FormInput = ({ hasEmail, roomNumber, handleParentSubmit }) => {
<p className="text-xs">
If your reservation is in 233 or 1201 and requires a specific room
setup that is different from the standard configuration, it is the
<a href="https://nyu.service-now.com/csmp?id=sc_home" target="_blank">
submit a work order with CBS
reservation holder’s responsibility to submit a
<a
className="text-blue-600 hover:underline dark:text-blue-500 mx-1"
href="https://nyu.service-now.com/csmp?id=sc_home"
target="_blank"
>
work order with CBS
</a>
.It is also the reservation holder's responsibility to ensure the room
. <br />
It is also the reservation holder's responsibility to ensure the room
is reset after use.
<br />
</p>
{errors.roomSetup && <ErrorMessage errors={errors.roomSetup.message} />}
<div className="flex items-center mb-4">
Expand Down Expand Up @@ -551,15 +558,6 @@ const FormInput = ({ hasEmail, roomNumber, handleParentSubmit }) => {
<ErrorMessage errors={errors.mediaServices.message} />
)}
<div className="flex flex-col mb-4">
<label key={'technicalTraining'}>
<input
type="checkbox"
value="Request technical training"
name="mediaServices"
{...register('mediaServices')}
/>
Request technical training
</label>
<label key={'checkoutEquipment'}>
<input
type="checkbox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ export const InitialModal = ({ handleClick }) => {
<div className="flex items-start justify-between p-4 border-b rounded-t dark:border-gray-600">
<h3 className="text-xl font-semibold text-gray-900 dark:text-white">
370🅙 Media Commons Reservation Form
<br />
Thank you for your interest in booking with the Media Commons.
<br />
Please read our Policy for using the 370 Jay Street Shared Spaces
</h3>
</div>
<p className="p-6 space-y-6">
Thank you for your interest in booking with the Media Commons.
<br />
Please read our Policy for using the 370 Jay Street Shared Spaces
<br />
<br />
<b>Booking Confirmation:</b> You will receive an email response from
the 370J Operations team and a calendar invite once your request has
been reviewed and processed. Please allow a minimum of 3 days for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ const SheetEditor = () => {
const handleModalClick = () => {
setShowModal(false);
};
console.log('showModal', showModal);
return (
<div className="p-10 dark:bg-gray-800">
{showModal && <InitialModal handleClick={handleModalClick} />}
Expand Down
Loading