Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
hzrd149 committed Feb 6, 2024
1 parent d6cc68d commit ffbd529
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
14 changes: 11 additions & 3 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# syntax=docker/dockerfile:1
FROM node:20 as builder
FROM node:20.11 as builder

WORKDIR /app
COPY . /app/

# Install dependencies
COPY ./package*.json .
COPY ./yarn.lock .
ENV NODE_ENV='development'
RUN yarn install --production=false --frozen-lockfile
RUN yarn patch-package

COPY . .

ENV VITE_COMMIT_HASH=""
ENV VITE_APP_VERSION="custom"
RUN yarn install && yarn build
RUN yarn build

FROM nginx:stable-alpine-slim
EXPOSE 80
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
diff --git a/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts b/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts
index 7b2a48a..12120f2 100644
index e33ab81..deff0c9 100644
--- a/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts
+++ b/node_modules/@react-three/fiber/dist/declarations/src/three-types.d.ts
@@ -383,10 +383,10 @@ export interface ThreeElements {
fogExp2: FogExp2Props;
shape: ShapeProps;
}
-declare global {
- namespace JSX {
- interface IntrinsicElements extends ThreeElements {
- }
- }
-}
fogExp2: FogExp2Props;
shape: ShapeProps;
}
-declare global {
- namespace JSX {
- interface IntrinsicElements extends ThreeElements {
- }
- }
-}
+// declare global {
+// namespace JSX {
+// interface IntrinsicElements extends ThreeElements {
+// }
+// }
+// }
export {};
export {};
2 changes: 1 addition & 1 deletion src/views/relays/cache/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function CacheRelayView() {
<Heading size="lg">Cache Relay</Heading>
</Flex>
<Text fontStyle="italic" mt="-2" px={{ base: "2", lg: 0 }}>
The cache relay is used to cache event locally so they can be loaded quickly
The cache relay is used to cache events locally so they can be loaded quickly
</Text>
<InternalRelay />
<NostrRelayTray />
Expand Down
2 changes: 1 addition & 1 deletion src/views/relays/contact-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function ContactListRelaysView() {
<Text fontStyle="italic" mt="-2">
Some apps store relays in your contacts list (kind-3)
<br />
noStrudel dose not use these relays, instead it uses your{" "}
noStrudel does not use these relays, instead it uses your{" "}
<Link as={RouterLink} to="/relays/mailboxes" color="blue.500">
Mailbox Relays
</Link>
Expand Down

0 comments on commit ffbd529

Please sign in to comment.