mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-03-26 17:52:18 +01:00
fix spelling
This commit is contained in:
parent
d6cc68de46
commit
ffbd529791
14
dockerfile
14
dockerfile
@ -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
|
||||
|
@ -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
src/views/relays/cache/index.tsx
vendored
2
src/views/relays/cache/index.tsx
vendored
@ -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 />
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user