Skip to content

Commit a04b990

Browse files
Fix syntax error in Panel.tsx return statement
1 parent ccd715c commit a04b990

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • plugin_creator/template/{{ cookiecutter.plugin_name }}/frontend/src

plugin_creator/template/{{ cookiecutter.plugin_name }}/frontend/src/Panel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export function render{{ cookiecutter.plugin_name }}Panel(context: InvenTreePlug
173173
);
174174
{%- else -%}
175175
return (
176-
<{{ cookiecutter.plugin_name }}Panel context={context} />;
176+
<{{ cookiecutter.plugin_name }}Panel context={context} />
177177
);
178178
{%- endif %}
179-
}
179+
}

0 commit comments

Comments
 (0)