We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa424b commit 4017d96Copy full SHA for 4017d96
Frontend/src/components/matching/Matching.jsx
@@ -26,7 +26,7 @@ function Matching({ handleCancel }) {
26
<div className="matching-text">
27
<h2>Matching you....</h2>
28
<p>{`${minutes < 10 ? `0${minutes}` : minutes}:${seconds < 10 ? `0${seconds}` : seconds}`}</p>
29
- <button className='btn btn-primary btn-sm' onClick={handleCancel} >Cancel</button>
+ <button className='btn btn-primary btn-sm' style={{display: 'none'}} onClick={handleCancel} >Cancel</button>
30
</div>
31
32
);
0 commit comments