Skip to content

Commit

Permalink
add code for apostrophe
Browse files Browse the repository at this point in the history
  • Loading branch information
SimNed committed Sep 9, 2024
1 parent 2dc5038 commit 42eeaaf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/admin/dashboard-statistics/TeamComments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React, { useState } from 'react';
import { Button, Stack, TextField } from '@mui/material';

import { EditButton } from 'src/components/buttons/EditButton';
import { defaultContainedButtonStyle } from 'src/styles/variables.const';

const TeamComments = () => {
const [isEditMode, setIsEditMode] = useState(false);
Expand All @@ -13,7 +12,7 @@ const TeamComments = () => {
return (
<div className="account__panel">
<Stack flexDirection="row" justifyContent="space-between" alignItems="center" p={2}>
<h2>Commentaires de l'équipe :</h2>
<h2>Commentaires de l&apos;équipe :</h2>
{isEditMode ? (
<div>
<Button
Expand Down

0 comments on commit 42eeaaf

Please sign in to comment.