Skip to content

Commit

Permalink
align quickstart indents
Browse files Browse the repository at this point in the history
  • Loading branch information
bfriel committed Nov 19, 2024
1 parent 84c9991 commit b6881d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ yarn | npm | pnpm add @phantom/wallet-sdk
import { createPhantom } from "@phantom/wallet-sdk"

const opts: CreatePhantomConfig = {
zIndex?: 10_000,
hideLauncherBeforeOnboarded?: true,
zIndex: 10_000,
hideLauncherBeforeOnboarded: true,
}

const App = () => {
useEffect(() => {
createPhantom(opts);
createPhantom(opts);
}, []);
...
}
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ yarn | npm | pnpm add @phantom/wallet-sdk
import { createPhantom } from "@phantom/wallet-sdk"

const opts: CreatePhantomConfig = {
zIndex?: 10_000,
hideLauncherBeforeOnboarded?: true,
zIndex: 10_000,
hideLauncherBeforeOnboarded: true,
}

const App = () => {
Expand Down

0 comments on commit b6881d4

Please sign in to comment.