Skip to content

Commit

Permalink
Updates app meta & readme (#5)
Browse files Browse the repository at this point in the history
* Updates app meta & readme

* update h1
  • Loading branch information
hasjack authored Jan 15, 2025
1 parent 4f7f6f2 commit c77cbcf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

This app allows a user to administer their Dapper Legacy Wallet pending Google making the plugin obsolete.

The app will be available at:
The app is available at:

```final link```
```https://dapperlabs.github.io/dlw-support-app/```

and uses GitHub pages to create a build of the `main` branch

Expand All @@ -14,7 +14,7 @@ Create a .env file:

```
DOCKERFILE=Dockerfile.dev
CONTAINER_NAME=dw-escape-hatch
CONTAINER_NAME=dlw-support-app
PORT=5952
VITE_APP_CHAIN_ID=0x1
```
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/dapper-wallet.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dapper Wallet Escape Hatch POC</title>
<title>Dapper Legacy Wallet Support App</title>
</head>
<body>
<div id="root"></div>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vite-project",
"name": "dlw-support-app",
"private": true,
"version": "0.0.0",
"version": "1.0.0",
"type": "module",
"homepage": "https://dapperlabs.github.io/dlw-support-app/",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AuthProps } from 'types/auth'
const Header: React.FC<AuthProps> = ({ loggedIn, handleSignIn, handleSignOut, isDapper, BASE_URL }) => {
return (
<>
<h1><Link to={'/'}>{'Escape Hatch POC'}</Link></h1>
<h1><Link to={'/'}>{'Dapper Legacy Wallet Support App'}</Link></h1>
{loggedIn ? (
<button onClick={handleSignOut}>
<WalletLogo logo={isDapper ? 'dapper' : 'metamask'} {...{ BASE_URL }} />
Expand Down

0 comments on commit c77cbcf

Please sign in to comment.