Errors with Deployment maybe relating to change in FF boilerplate: import '/backend/schema/structs/index.dart';

All my custom widgets are no longer deploying with no change on my end.

EDIT: My betterplayer widget which is totally unchanged is no longer working as well and doesn't have the boilerplate below so I'm not sure it has anything to do with the below or if FF has pushed an update.

The boiler plate for the broken ones contains this very first line (structs/index.dart) in the boiler plate but now FF seems to automatically be moving that line out and down into the main body of the code block where the custom code begins. This seems to be causing issues with a lot of my custom widgets which worked fine last month.

Anyone else having something similar happening to them? Or has there just been some another update pushed that is breaking things?

// Automatic FlutterFlow imports
import '/backend/schema/structs/index.dart';
import '/actions/actions.dart' as action_blocks;
import '/flutter_flow/flutter_flow_theme.dart';
import '/flutter_flow/flutter_flow_util.dart';
import '/custom_code/widgets/index.dart'; // Imports other custom widgets
import '/custom_code/actions/index.dart'; // Imports custom actions
import '/flutter_flow/custom_functions.dart'; // Imports custom functions
import 'package:flutter/material.dart';
3