Skip to content

Commit

Permalink
Fixed template string for clinic codes
Browse files Browse the repository at this point in the history
  • Loading branch information
AEst2002 committed Nov 8, 2023
1 parent 3d13024 commit c5cb2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/create-clinic/create-clinic-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function CreateClinicForm(clinician: Clinician) {
if (error) {
setMessage(error.message);
} else {
setMessage("Your clinic code: ${clinicCode}");
setMessage(`Your clinic code: ${clinicCode}`);
}
} catch (error) {
setMessage((error as Error).message);
Expand Down

0 comments on commit c5cb2c6

Please sign in to comment.