Skip to content

Commit

Permalink
hotfix temporary project id generation
Browse files Browse the repository at this point in the history
  • Loading branch information
bartolomej committed Sep 29, 2023
1 parent b740dff commit 46ad26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/targets/electron/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class FlowserBackend {
const defaultProjectProto = projectService.getDefaultProject();

const temporaryProject = ProjectEntity.create({
id: crypto.randomBytes(20).toString("utf-8"),
id: crypto.randomBytes(20).toString("base64url"),
name: "Flow CLI project",
filesystemPath: options.filesystemPath,
gateway: defaultProjectProto.gateway,
Expand Down

0 comments on commit 46ad26c

Please sign in to comment.