rebase 2
This commit is contained in:
parent
b45bcef1fb
commit
45a210fdb5
@ -31,7 +31,7 @@ import {
|
||||
import { NoteCreator } from "Element/NoteCreator";
|
||||
import Reactions from "Element/Reactions";
|
||||
import SendSats from "Element/SendSats";
|
||||
import { parseZap, ParsedZap, ZapsSummary } from "Element/Zap";
|
||||
import { parseZap, ZapsSummary } from "Element/Zap";
|
||||
import { useUserProfile } from "Feed/ProfileFeed";
|
||||
import { default as NEvent } from "Nostr/Event";
|
||||
import { RootState } from "State/Store";
|
||||
|
@ -126,10 +126,10 @@ const Reactions = ({
|
||||
<span className="zap-amount">{formatShort(z.amount)}</span>
|
||||
</div>
|
||||
<ProfileImage
|
||||
pubkey={z.zapper!}
|
||||
pubkey={z.zapper ?? ""}
|
||||
subHeader={<>{z.content}</>}
|
||||
/>
|
||||
<FollowButton pubkey={z.zapper!} />
|
||||
<FollowButton pubkey={z.zapper ?? ""} />
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
|
@ -49,7 +49,6 @@ const messages = defineMessages({
|
||||
Add: "Add",
|
||||
AddRelays: "Add Relays",
|
||||
Name: "Name",
|
||||
Profile: "Profile",
|
||||
Website: "Website",
|
||||
Save: "Save",
|
||||
DisplayName: "Display name",
|
||||
|
@ -1,6 +1,6 @@
|
||||
git:
|
||||
filters:
|
||||
- filter_type: dir
|
||||
file_format: KEYVALUEJSON
|
||||
source_file_dir: 'src/translations'
|
||||
translation_files_expression: 'src/translations/<lang>.json'
|
||||
- filter_type: dir
|
||||
file_format: KEYVALUEJSON
|
||||
source_file_dir: "src/translations"
|
||||
translation_files_expression: "src/translations/<lang>.json"
|
||||
|
Loading…
x
Reference in New Issue
Block a user