Remove Usage Quotas Storage Inline Alert
What does this MR do and why?
This partially implements https://gitlab.com/gitlab-org/gitlab/-/issues/387958. Here we're removing the storage limit alert that's shown in the middle of the Usage Quotas page because we're relying on the main alert that is present at the top of the page.
Screenshots or screen recordings
| Before | After | 
|---|---|
|  |  | 
How to set up and validate locally
- Create or Pick a group, take note of its ID
- Create a project in this group, take note of its ID
- In rails console:
- Gitlab::CurrentSettings.update!(repository_size_limit: 1000.megabytes)
- p = Project.find(< your project id here >)
- p.statistics.update(repository_size: 1100.megabytes)
 
- Now back to your Browser, go to: https://gdk.test:3443/groups/<your-group>/-/usage_quotas#storage-quota-tab
- Notice you should have an alert in red at the top of the page and at the center
- Switch to this branch and notice the alert at the center of the page is gone.
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
- 
I have evaluated the MR acceptance checklist for this MR. 
Edited  by Sheldon Led