We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the window is resized, the title of a ship will change or disappear. Big: Small:
Notice how the shipped catsay loses the exclamation mark, and the draft update just ceases to have a title
I think this is due to in ships.tsx the small header uses the code
<h2 className="text-xl font-semibold text-left mb-2 sm:hidden block"> {s.title} </h2>
While the big one uses:
<h2 className="text-xl font-semibold text-left mb-2 sm:block hidden"> {latestShip.title} </h2>
The s should be changed to latestShip to fix this
s
latestShip
The text was updated successfully, but these errors were encountered:
Actually ima make a pr rn
Sorry, something went wrong.
DJ-Laser
No branches or pull requests
When the window is resized, the title of a ship will change or disappear.
![Image](https://private-user-images.githubusercontent.com/90146620/398766465-1ff3ed7a-e749-453a-bc9e-3d29f06fc73e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzNTkyNDMsIm5iZiI6MTczOTM1ODk0MywicGF0aCI6Ii85MDE0NjYyMC8zOTg3NjY0NjUtMWZmM2VkN2EtZTc0OS00NTNhLWJjOWUtM2QyOWYwNmZjNzNlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEyVDExMTU0M1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTQwYzIyYmQ4MjBjNDQ5N2ZiYTg0ZmYzZjNiYjNlM2NjNzM2OWE4OTUxZmMyMGYzYjY3MGQyN2VhNjUwNmM0OTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.elF0n4_9vVFeqZ5-PbqCJduiPZjSoZalAW-hHBKMZBs)
![Image](https://private-user-images.githubusercontent.com/90146620/398766479-5e3c8154-138a-4d9f-ad16-492ab0d2415b.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzNTkyNDMsIm5iZiI6MTczOTM1ODk0MywicGF0aCI6Ii85MDE0NjYyMC8zOTg3NjY0NzktNWUzYzgxNTQtMTM4YS00ZDlmLWFkMTYtNDkyYWIwZDI0MTViLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEyVDExMTU0M1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWJjYWY0YThiNDgxMTVkMjg3OWViMDc1NmQyMWNkNDRlZjc2YjRlYjRmY2U0NTgzOWVhZDZmZWIzMTM3NDk3NjgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.b1iY5RbN__8_tIroyFCrbURCwMMlR95d8g7XHi2F2zg)
Big:
Small:
Notice how the shipped catsay loses the exclamation mark, and the draft update just ceases to have a title
I think this is due to in ships.tsx the small header uses the code
While the big one uses:
The
s
should be changed tolatestShip
to fix thisThe text was updated successfully, but these errors were encountered: