Skip to content

Commit

Permalink
fix: typo (sat -> sats) and not opening multiple tabs for profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
imaginator committed Feb 19, 2025
1 parent 884f96f commit 9303443
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/HomePage/Components/TipSatsForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function TipSatForm() {
value={formatSatValue(satValue)}
onChange={handleChange}
/>
<div>sat</div>
<div>sats</div>
</div>

<div className="tipQuickSat">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Profile/components/FeedItem/FeedItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const FeedItem = (props) => {
/>
</div>
<div className="feedItemSatTime">
<b>{amount_sats} sat</b> -{' '}
<b>{amount_sats} sats</b> -{' '}
<DateTippedAt
handle={recipient}
tweet_id={tweet_id}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';

const TwitterHandle = ({ handle }) => {
const navigateToProfile = () => {
if (handle) window.open(`/${handle}`, '_blank');
if (handle) window.open(`/${handle}`, '_self');
};

return (
Expand Down

0 comments on commit 9303443

Please sign in to comment.