This commit is contained in:
ennmichael 2023-02-08 23:04:55 +01:00 committed by Kieran
parent b45bcef1fb
commit 45a210fdb5
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
4 changed files with 7 additions and 8 deletions

View File

@ -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";

View File

@ -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>
);
})}

View File

@ -49,7 +49,6 @@ const messages = defineMessages({
Add: "Add",
AddRelays: "Add Relays",
Name: "Name",
Profile: "Profile",
Website: "Website",
Save: "Save",
DisplayName: "Display name",

View File

@ -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"