bump version

This commit is contained in:
reya 2023-12-07 11:55:49 +07:00
parent a42a2788ea
commit 0d43c13928
4 changed files with 13 additions and 13 deletions

View File

@ -2,7 +2,7 @@
"name": "lume", "name": "lume",
"description": "the communication app", "description": "the communication app",
"private": true, "private": true,
"version": "2.2.1", "version": "2.2.2",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",

View File

@ -9,7 +9,7 @@
}, },
"package": { "package": {
"productName": "Lume", "productName": "Lume",
"version": "2.2.1" "version": "2.2.2"
}, },
"plugins": { "plugins": {
"fs": { "fs": {

View File

@ -40,7 +40,11 @@ export const NIP05 = memo(function NIP05({
const data: NIP05 = await res.json(); const data: NIP05 = await res.json();
if (data.names) { if (data.names) {
if (data.names[localPath.toLowerCase()] !== pubkey) return false; if (
data.names[localPath.toLowerCase()] !== pubkey ||
data.names[localPath] !== pubkey
)
return false;
return true; return true;
} }
return false; return false;
@ -60,17 +64,13 @@ export const NIP05 = memo(function NIP05({
return ( return (
<div className="inline-flex items-center gap-1"> <div className="inline-flex items-center gap-1">
<p className={twMerge('text-sm font-medium', className)}>{nip05}</p> <p className={twMerge('text-sm font-medium', className)}>
{nip05.startsWith('_@') ? nip05.replace('_@', '') : nip05}
</p>
{data === true ? ( {data === true ? (
<div className="inline-flex h-5 w-max shrink-0 items-center justify-center gap-1 rounded-full bg-teal-500 pl-0.5 pr-1.5 text-xs font-medium text-white"> <VerifiedIcon className="h-4 w-4 text-teal-500" />
<VerifiedIcon className="h-4 w-4" />
Verified
</div>
) : ( ) : (
<div className="inline-flex h-5 w-max shrink-0 items-center justify-center gap-1.5 rounded-full bg-red-500 pl-0.5 pr-1.5 text-xs font-medium text-white"> <UnverifiedIcon className="h-4 w-4 text-red-500" />
<UnverifiedIcon className="h-4 w-4" />
Unverified
</div>
)} )}
</div> </div>
); );

View File

@ -30,7 +30,7 @@ export function LiveUpdater({ status }: { status: QueryStatus }) {
useEffect(() => { useEffect(() => {
let sub: NDKSubscription = undefined; let sub: NDKSubscription = undefined;
if (status === 'success' && db.account && db.account?.follows?.length > 0) { if (status === 'success' && db.account && db.account?.contacts?.length > 0) {
queryClient.fetchQuery({ queryKey: ['notification'] }); queryClient.fetchQuery({ queryKey: ['notification'] });
const filter: NDKFilter = { const filter: NDKFilter = {