Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zmh-program committed Oct 25, 2023
1 parent 74be9cb commit c6966e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/assets/home.less
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@
}

.input-options {
margin: 6px auto 2px;
margin: 6px auto -2px;
display: flex;
flex-direction: row;
align-items: center;
Expand Down
4 changes: 2 additions & 2 deletions app/src/dialogs/Subscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@ function Subscription() {
GPT-4
<div className={`grow`} />
<div className={`sub-value`}>
<p>{ usage.gpt4 }</p> / <p> 50 </p>
<p>{ usage?.gpt4 }</p> / <p> 50 </p>
</div>
</div>
<div className={`sub-column`}>
<ImagePlus className={`h-4 w-4 mr-1`} />
DALL-E
<div className={`grow`} />
<div className={`sub-value`}>
<p>{ usage.dalle }</p> / <p> 2000 </p>
<p>{ usage?.dalle }</p> / <p> 2000 </p>
</div>
</div>
</div>
Expand Down

0 comments on commit c6966e9

Please sign in to comment.