Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class BaseSnapExecutor {

assert(
!required || handler !== undefined,
`No ${handlerType} handler exported for snap "${target}`,
`No ${handlerType} handler exported for snap "${target}".`,
rpcErrors.methodNotSupported,
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type ItalicProps = {
const TYPE = 'Italic';

/**
* An italic component, which is used to display text in italic. This componen
* An italic component, which is used to display text in italic. This component
* can only be used as a child of the {@link Text} component.
*
* @param props - The props of the component.
Expand Down
Loading