We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bce0d6 commit 7583a9bCopy full SHA for 7583a9b
src/plugins/driveBrowserPlugin.ts
@@ -245,7 +245,7 @@ namespace Private {
245
/**
246
* Create the node for a creating a new drive handler.
247
*/
248
- const createNewDriveNode = (newDriveName: string): HTMLElement => {
+ const createNewDriveNode = (): HTMLElement => {
249
const body = document.createElement('div');
250
251
const drive = document.createElement('label');
@@ -274,7 +274,7 @@ namespace Private {
274
* Construct a new "create-drive" dialog.
275
276
constructor(newDriveName: string) {
277
- super({ node: createNewDriveNode(newDriveName) });
+ super({ node: createNewDriveNode() });
278
this.onAfterAttach();
279
}
280
0 commit comments