Skip to content

Commit

Permalink
changes based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
dbcfd committed Dec 15, 2023
1 parent dce5745 commit 946b19b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/devtools-node/src/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function createComposite(
export async function readEncodedComposite(
ceramic: CeramicClient | string,
path: PathInput,
deploy: boolean,
deploy?: boolean,
): Promise<Composite> {
const client = typeof ceramic === 'string' ? new CeramicClient(ceramic) : ceramic
const file = getFilePath(path)
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/src/composite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export type FromModelsParams = CompositeOptions & {
* Whether to add the Models to the index or not. If `true`, the Ceramic instance must be
* authenticated with an admin DID. Defaults to `false`.
*/
index: boolean
index?: boolean
}

/**
Expand Down

0 comments on commit 946b19b

Please sign in to comment.