Skip to content

Commit 2d4f911

Browse files
yann300ci-bot
authored andcommitted
Fix indentation in toast method definition
1 parent c4cd810 commit 2d4f911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/remix-ide/src/app/plugins/notification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class NotificationPlugin extends Plugin implements MethodApi<INotificatio
4343
return this.dispatcher.alert(args)
4444
}
4545

46-
async toast(message: string | JSX.Element, timeout?: number, timestamp?: number): Promise<number> {
46+
async toast(message: string | JSX.Element, timeout?: number, timestamp?: number): Promise<number> {
4747
timestamp = timestamp || Date.now()
4848
timestamp = timestamp + ++this.toastId
4949
this.dispatcher.toast(message, timeout, timestamp)

0 commit comments

Comments
 (0)