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: Add check for failing public key while creating blueprint #108

Draft
wants to merge 20 commits into
base: staging
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7c83c2e
chore: Fix submit blueprint button state
wryonik Feb 21, 2025
51d4915
chore: Fix build errors
wryonik Feb 24, 2025
116cf19
chore: Update sdk version
wryonik Feb 25, 2025
fbb44ee
chore: bump sdk version
DimiDumo Feb 26, 2025
316c09f
core: cleanup; pass ignoreBodyHashCheck to parseEmail
DimiDumo Feb 28, 2025
abb588f
fix: set default isPublic of bp props true
DimiDumo Mar 3, 2025
eb6cee3
chore: Add max length calculation logic using extracted output
wryonik Feb 20, 2025
fe059b4
chore: Update prompt to prefer 2nd DKIM signature if available
wryonik Feb 20, 2025
a3d99b2
chore: Add tooltip explaining external inputs in the proofs page
wryonik Mar 3, 2025
f1dcad7
chore: Update design for remote and local proving methods
wryonik Feb 20, 2025
85a2ed8
chore: Update new blueprint version update flow
wryonik Feb 12, 2025
12d3555
wip: Add flow to save eml file in the browser storage
wryonik Feb 13, 2025
798b09c
chore: Fix logic for submit blueprint button
wryonik Feb 17, 2025
b361001
chore: Fix styling of modals
wryonik Feb 17, 2025
5db00ce
Update eml file content state
wryonik Mar 9, 2025
b33d952
chore: Add error state for non existent blueprints
wryonik Mar 9, 2025
71301c1
chore: bump sdk version
DimiDumo Mar 10, 2025
2226c06
chore: edit version modal options with hover effect and cursor pointer
rutefig Mar 10, 2025
3c2199f
fix: allow user to setup manually max length for each regex pattern
rutefig Mar 11, 2025
12b8c74
chore: Add check for failing public key while creating blueprint
wryonik Mar 19, 2025
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
Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@
"@anthropic-ai/sdk": "^0.32.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-label": "^2.1.0",
@@ -22,7 +23,7 @@
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-oauth/google": "^0.12.1",
"@zk-email/sdk": "0.0.126",
"@zk-email/sdk": "^0.0.133",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.11",
14 changes: 14 additions & 0 deletions public/assets/EditVersion.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions public/assets/UploadEmlSVG.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/(bluerpint-list)/BlueprintList.tsx
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ export default function BlueprintList({ search, filters, sort }: BlueprintListPr
}

if (results) {
setBlueprints(results);
setBlueprints((prevBlueprints) => [...prevBlueprints, ...results]);
// If we got fewer results than the limit, we've reached the end
setHasMore(results.length === PAGINATION_LIMIT);
setSkip((prevSkip) => prevSkip + PAGINATION_LIMIT);
Loading