Issue with saving changes

I think basically, there’s nothing to do except get better internet. The thing is this is a classic client server problem. Your client (repl) is registering and putting your input because there’s 0 latency for a local editor. Whereas the internet you have is trying to ping the replit server and being far too slow. This results in you typing stuff and it missing stuff or being extremely delayed. So your screen will say on your end that it has, for example:

print("Hello World!")

whereas the server is only at:

prin

and thus when the server repings your client, it’ll tell the client:

Hey! This is the code we currently got

and the client will respond by basically putting whatever the server has registered

1 Like