0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 11:02:38 +00:00

Remove unnecessary default option

This commit is contained in:
G.Ambatte
2025-04-07 15:59:34 +12:00
parent 4c4a023f34
commit a594d45611

View File

@@ -23,7 +23,7 @@ function LockNotification(props) {
};
const renderReviewButton = function(){
if(reviewState || props.lock.reviewRequested){ return <button className='inactive'>REVIEW REQUESTED</button>; };
if(reviewState){ return <button className='inactive'>REVIEW REQUESTED</button>; };
return <button onClick={removeLock}>REQUEST LOCK REMOVAL</button>;
};