Skip to content

Commit

Permalink
Session disable
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Sep 27, 2024
1 parent fb574d7 commit 7e19519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/tabs/account/Account.js
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ const Account = (props) => {
<div className='Account__kudos'>
{!props.usingSessionKeys && props.isSessionable ? (
<p className='Text__small Account__kudos__label'>
Tired of approving each pixel? Create a session!
Tired of approving each pixel? Sessions coming soon!
</p>
) : (
<p className='Text__small Account__kudos__label'>
Expand All @@ -621,11 +621,11 @@ const Account = (props) => {
<div>
{!props.usingSessionKeys && props.isSessionable && (
<div
className='Text__small Button__primary Account__disconnect__button'
style={{ marginBottom: '0.3rem' }}
className='Text__small Button__primary Button__disabled'
style={{ marginBottom: '0.3rem', backgroundColor: '#f00' }}
onClick={() => props.startSession()}
>
New Session
Start session
</div>
)}
<div
Expand Down

0 comments on commit 7e19519

Please sign in to comment.