According to Android's documentation, you should be using a SavedStateViewModelFactory to create a SaveStateHandle that is passed to your ViewModel constructor.
The error indicates that you are creating the SaveStateHandle directly within your composable instead of using a factory.
Try the methodology described in this other post.