You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/alerts/index.jsx
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -276,21 +276,23 @@ const alerts = [
276
276
),
277
277
iconSpinner: true,
278
278
level: AlertLevels.SUCCESS
279
-
},{
279
+
},{
280
280
alertId: 'TorchyCustomBlockWarning',
281
281
alertType: AlertTypes.STANDARD,
282
282
clearList: [],
283
283
content: (
284
284
<FormattedMessage
285
+
// eslint-disable-next-line max-len
285
286
defaultMessage="Enabling use of custom extensions blocks may cause Torchy to not generate functional code."
287
+
// eslint-disable-next-line max-len
286
288
description="Warning message indicating that custom blocks may cause Torchy to not generate functional code"
287
289
id="gui.alerts.TorchyCustomBlockWarning"
288
290
/>
289
291
),
290
292
closeButton: true,
291
293
level: AlertLevels.WARN,
292
294
maxDisplaySecs: 15
293
-
},{
295
+
},{
294
296
alertId: 'TorchyWaitForAIToFinishWarning',
295
297
alertType: AlertTypes.STANDARD,
296
298
clearList: [],
@@ -304,12 +306,13 @@ const alerts = [
304
306
closeButton: true,
305
307
level: AlertLevels.WARN,
306
308
maxDisplaySecs: 15
307
-
},{
309
+
},{
308
310
alertId: 'LiveReloadDisabledNotice',
309
311
alertType: AlertTypes.STANDARD,
310
312
clearList: [],
311
313
content: (
312
314
<FormattedMessage
315
+
// eslint-disable-next-line max-len
313
316
defaultMessage="Live code editing is disabled (changes take effect only after rerunning the project). To enable it, go to Edit → Advanced Settings → Use Scratch Interpreter."
314
317
description="Message indicating that Live Reload is disabled in this project."
0 commit comments