Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/babel/traverse-7.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rainforest-dev authored Nov 17, 2023
2 parents 12de3ea + edbe9bd commit 3adbb3c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"account-title": "account",
"activity": "activity",
"address": "Address",
"current-address": "Current Address",
"asset": "asset",
"btn-access": "Access",
"btn-add_address": "add address",
Expand Down Expand Up @@ -94,8 +95,10 @@
"policy-description": "You have to know Hoogii takes your privacy seriously:\n\n \n* We will **NEVER** ask you to share your private keys or wallet seed.\n* You should **NEVER** trust anyone or any site that asks you to enter your private keys or wallet seed.\n\n \n\nFor More information, please see our [Privacy policy](https://hoogii.app/docs/privacy-policy) here.\n\n \n\n---\n\n \n\nBefore go to next step, please make sure:\n* No one is peeking at your screen\n* You understand and agree Hoogii's [Privacy policy](https://hoogii.app/docs/privacy-policy) and [Terms of use](https://hoogii.app/docs/terms-of-use).",
"refuse-authorization-contents": "Dapp’s Authorization contents",
"refuse-connect-with-hoogii": "Connect with Hoogii:",
"refuse-you-allow-to": "By connecting, you allow to:",
"refuse-permission-1": "See your balance and activity",
"refuse-permission-2": "Request approval for transactions",
"refuse-only-connect-with-sites-you-trust": "Only connect with sites you trust.",
"refuse-this-app-would-like-to": "This app would like to:",
"search-address_book-placeholder": "Search Address, User name, etc",
"search-assets-placeholder": "Search Name, asset ID, etc",
"send-error-title": "Unable to Send",
Expand Down
9 changes: 6 additions & 3 deletions src/popup/components/connectSiteInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ const connectSiteInfo = ({
request,
}: IPopupPageProps<MethodEnum.REQUEST | MethodEnum.ENABLE>) => {
return (
<div className="min-w-[164px] h-[44px] border-solid border-primary-100 border rounded-lg flex justify-center items-center m-1 p-1">
<img src={request.iconUrl} alt="icon" className="w-7 h-7 mr-1" />
<div className="text-body3 text-primary-100 break-all overflow-hidden text-ellipsis ">
<div
title={request.origin}
className="flex max-w-full gap-2 px-4 py-2 text-button2 text-primary-100 items-center border-primary-100/20 border rounded-lg"
>
<img src={request.iconUrl} alt="icon" className="w-7 h-7" />
<div className="whitespace-nowrap text-ellipsis overflow-hidden">
{request.origin}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/types/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const POPUP_WINDOW = {
top: 50,
left: 100,
width: 400,
height: 600,
height: 700,
} as const

export const ConnectionName = {
Expand Down

0 comments on commit 3adbb3c

Please sign in to comment.