refactor: Fix Typo (#7445)

This commit is contained in:
Adithyan 2023-12-16 23:53:11 +05:30 committed by GitHub
parent 537f6e7f68
commit 7bd6496854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 15 deletions

View file

@ -53,7 +53,7 @@ export type Collaborator = Readonly<{
background: string;
stroke: string;
};
// The url of the collaborator's avatar, defaults to username intials
// The url of the collaborator's avatar, defaults to username initials
// if not present
avatarUrl?: string;
// user id. If supplied, we'll filter out duplicates when rendering user avatars.
@ -500,10 +500,10 @@ export type ExportOpts = {
) => JSX.Element;
};
// NOTE at the moment, if action name coressponds to canvasAction prop, its
// NOTE at the moment, if action name corresponds to canvasAction prop, its
// truthiness value will determine whether the action is rendered or not
// (see manager renderAction). We also override canvasAction values in
// excalidraw package index.tsx.
// Excalidraw package index.tsx.
export type CanvasActions = Partial<{
changeViewBackgroundColor: boolean;
clearCanvas: boolean;