8000 release: 1.8.7 by dcposch · Pull Request #1053 · daimo-eth/daimo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

release: 1.8.7 #1053

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

Merged
merged 3 commits into from
May 17, 2024
Merged
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 apps/daimo-mobile/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ExpoConfig } from "@expo/config";

const IS_DEV = process.env.DAIMO_APP_VARIANT === "dev";

const VERSION = "1.8.7";
const VERSION = "1.8.8";

const config: ExpoConfig = {
owner: "daimo",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function LogInOptions({ eAcc }: { eAcc: EAccount }) {
/>
</>
)}
<Spacer h={24} />
<Spacer h={32} />
</View>
</View>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export function MissingKeyScreen() {

const [title, desc] = getKeyErrorDesc(account, keyInfo);

console.log(
`[ONBOARDING] MISSING KEY ${account.name}, ${account.accountKeys.length} keys, ${account.pendingKeyRotation.length} pending rotations, pubKeyHex: ${keyInfo.pubKeyHex} title: ${title}, desc: ${desc}`
);

return (
<View>
<OnboardingHeader title="Missing Key" />
Expand Down
5 changes: 1 addition & 4 deletions packages/daimo-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,9 @@ FROM node:20
# Set the working directory inside the container
WORKDIR /usr/src/app

# Copy app code
# Copy app code and dependencies
COPY . .

# Install dependencies
RUN npm ci

# Build your application
RUN npm run build:api

Expand Down
Loading
0