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

Fix spelling issues #2010

Open
wants to merge 5 commits into
base: develop
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
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG NODE_VERSION=20.3.0

# Common base so it's cached
# --platform=$BUILDPLATFORM is used build javascript source with host arch
# --platform=$BUILDPLATFORM is used to build javascript source with host arch
# Otherwise webpack builds on emulated archs can be extremely slow (+1h)
ARG BASE_IMAGE=node:${NODE_VERSION}-alpine

Expand Down Expand Up @@ -41,4 +41,4 @@ RUN yarn --frozen-lockfile --non-interactive
ENV VITE_APP_API_URL /
RUN yarn build

ENTRYPOINT [ "/usr/src/app/start_dev.sh" ]
ENTRYPOINT [ "/usr/src/app/start_dev.sh" ]
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default function SelectMountpoint({

{showHelp && (
<div className="change-mountpoint-help">
Existing volumes can't be changed. To do so, unistall this package and
Existing volumes can't be changed. To do so, uninstall this package and
remove its data
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion packages/admin-ui/src/components/sidebar/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
color: black;
text-decoration: none;
transition: all 0.5s;
/* Try to standarize this size */
/* Try to standardize this size */
font-size: 0.94rem;

/* Subheader before the list of routes, with text: Admin UI */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { InputForm } from "components/InputForm";

/**
* View to chose or change the Eth multi-client
* View to choose or change the Eth multi-client
* There are three main options:
* - Remote
* - Full node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import BottomButtons from "../BottomButtons";
import { api } from "api";

/**
* View to chose or change the Eth multi-client
* View to choose or change the Eth multi-client
* There are three main options:
* - Remote
* - Full node
Expand Down
Loading