Hey kyle shanks This is common and lemme give you a few trouble shoots. Verify if the user exists in your SQL Server database. Sometimes, typos can cause rhis. make sure thee user is mapped to a valid login. Run this query to check
SELECT * FROM sys.sql_logins WHERE name = 'your_user';
SQL Server logins are case-sensitive. recheck the typos and spellings If all else fails, try restarting your SQL Server.
If this helps kindly accept the aswer.