feat: sort / description improvements on scoring page (#147)

- swap upgrade / format descriptions
- default to advanced format view
- persist view choice after modal closes / tab changes
This commit is contained in:
santiagosayshey
2025-02-23 06:24:09 +10:30
committed by GitHub
parent f91fea113f
commit 2413a8d2c2
5 changed files with 19 additions and 15 deletions

View File

@@ -173,11 +173,6 @@ export const pushFiles = async () => {
const response = await axios.post(`/api/git/push`);
return response.data;
} catch (error) {
console.log(
'Push error full structure:',
JSON.stringify(error.response?.data, null, 2)
);
if (error.response?.data?.error) {
return error.response.data;
}