Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos #1183

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/dapps/sdk-playground/src/pages/demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export const Demo = () => {
},
{
method: 'personal_sign',
params: ['Hello Wolrd', selectedAddress],
params: ['Hello World', selectedAddress],
},
{
method: 'eth_sendTransaction',
Expand Down
2 changes: 1 addition & 1 deletion docs/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ yarn
cd packages/sdk-socket-server
yarn debug

# lauch one of the dev application playground, here for nextjs
# launch one of the dev application playground, here for nextjs
cd packages/devnext
# if you use a local socket server you can configure it inside the .env file
echo "NEXT_PUBLIC_COMM_SERVER_URL=http://YOUR_LOCAL_IP:4000/" > .env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const handleJoinChannel = async ({
// room should be < MAX_CLIENTS_PER_ROOM since we haven't joined yet
const room = io.sockets.adapter.rooms.get(channelId);
// roomOccupancy can potentially be 0 instead of 1 if the dapp and wallet were dispatched on different servers
// channelOccupancy should be the correct value as it represents the global state accross all servers
// channelOccupancy should be the correct value as it represents the global state across all servers
let roomOccupancy = room?.size ?? 0;

const isSocketInRoom = room?.has(socketId) ?? false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface PickerAccountProps extends Omit<PickerBaseProps, 'children'> {
*/
showAddress?: boolean;
/**
* cell account contianer style.
* cell account container style.
*/
cellAccountContainerStyle?: ViewStyle;

Expand Down