How This Occurred
In the TableDataViewModel, I adjusted the function updatePlayerName() to accept the parameter playerID, which was previously named id.
How This Was Problematic
I had not used the IntelliJ IDEA’s refactor function to perform this renaming and so many function calls in my CreateTableScreen composable were now erroneous, attempting to pass an id parameter where one no longer existed.
How I Fixed It
I simply renamed it back to id in the ViewModel and then used the refactor function to rename it properly ( this ensures that is renamed everywhere that it is used to prevent these errors )