I created a public/private key pair:
ssh-keygen -t rsa -C "me@example.com"
I gave a different key file name than id_rsa since I wanted to create a new separate key from my normal identity.
I gave this key to my hosting provider so that I can login to my server using public key authentication.
I was able to initially login using the key and everything worked.
ssh -i /path/to/key/file user@server.com
I realized I made a spelling error in the key file name and renamed both the public and private key files. Does this affect anything on the server side if the key file has a different name on my client machine?