Skip to content

Commit 1ef79c6

Browse files
committed
lint
1 parent ef88b04 commit 1ef79c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/remix-ide/src/app/plugins/templates-selection/templates-selection-plugin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
175175
>
176176
{template.items.map((item, index) => {
177177
item.templateType = TEMPLATE_METADATA[item.value]
178-
if(item.templateType && item.templateType.disabled === true) return
178+
if (item.templateType && item.templateType.disabled === true) return
179179
if (!item.opts) {
180180
return (
181181
<RemixUIGridCell

apps/remix-ide/src/app/plugins/templates-selection/templates.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Template, TemplateGroup } from "@remix-ui/workspace"
22
export const templates = (intl: any, plugin: any): TemplateGroup[] => {
3-
3+
44
return [
55
{
66
name: "Generic",
@@ -272,7 +272,7 @@ export const templates = (intl: any, plugin: any): TemplateGroup[] => {
272272
onClickLabel: 'Open Cookbook Plugin',
273273
description: 'Discover more templates!',
274274
items: [],
275-
/* {
275+
/* {
276276
value: "token-sale",
277277
displayName: 'Token Sale',
278278
description: "ERC20 token sale contact. Sell tokens for ETH"
@@ -318,7 +318,7 @@ export const templates = (intl: any, plugin: any): TemplateGroup[] => {
318318
opts: {
319319
burnable: true,
320320
pausable: true
321-
}, },
321+
}, },
322322
]*/
323323
},
324324
{

0 commit comments

Comments
 (0)