Skip to content

Commit 4017d96

Browse files
committed
Remove "Cancel Match" functionality
1 parent 4aa424b commit 4017d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Frontend/src/components/matching/Matching.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function Matching({ handleCancel }) {
2626
<div className="matching-text">
2727
<h2>Matching you....</h2>
2828
<p>{`${minutes < 10 ? `0${minutes}` : minutes}:${seconds < 10 ? `0${seconds}` : seconds}`}</p>
29-
<button className='btn btn-primary btn-sm' onClick={handleCancel} >Cancel</button>
29+
<button className='btn btn-primary btn-sm' style={{display: 'none'}} onClick={handleCancel} >Cancel</button>
3030
</div>
3131
</div>
3232
);

0 commit comments

Comments
 (0)