Skip to content

Commit 48bb895

Browse files
committed
fix(plugins): remove redundant git command from error logging in loadPlugins
Signed-off-by: 7HR4IZ3 <90985774+7HR4IZ3@users.noreply.github.com>
1 parent 93d5baf commit 48bb895

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/loadPlugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default async function loadPlugins(loadOnlyTheme = false) {
105105
BROKEN_PLUGINS.delete(pluginId);
106106
}
107107
} catch (error) {
108-
console.error(`Error loading plugin ${pluginId}:`, error);git
108+
console.error(`Error loading plugin ${pluginId}:`, error);
109109
// mark plugin as broken to avoid repeated attempts until user intervenes
110110
BROKEN_PLUGINS.set(pluginId, {
111111
error: String(error.message || error),

0 commit comments

Comments
 (0)