diff --git a/components/SummonUnit/index.tsx b/components/SummonUnit/index.tsx index 7f939085..42e98651 100644 --- a/components/SummonUnit/index.tsx +++ b/components/SummonUnit/index.tsx @@ -141,7 +141,14 @@ const SummonUnit = ({ let suffix = '' if (gridSummon.object.uncap.xlb && gridSummon.uncap_level == 6) { - suffix = '_03' + if ( + gridSummon.transcendence_step >= 1 && + gridSummon.transcendence_step < 5 + ) { + suffix = '_03' + } else if (gridSummon.transcendence_step === 5) { + suffix = '_04' + } } else if ( upgradedSummons.indexOf(summon.granblue_id.toString()) != -1 && gridSummon.uncap_level == 5 diff --git a/components/UpdatesPage/index.scss b/components/UpdatesPage/index.scss index 01ce3fd7..81b6a28e 100644 --- a/components/UpdatesPage/index.scss +++ b/components/UpdatesPage/index.scss @@ -18,7 +18,7 @@ .Contents { display: grid; - grid-template-columns: 1fr 1fr; + grid-template-columns: 1fr; gap: $unit-4x; .characters, diff --git a/components/UpdatesPage/index.tsx b/components/UpdatesPage/index.tsx index c810f67b..18879522 100644 --- a/components/UpdatesPage/index.tsx +++ b/components/UpdatesPage/index.tsx @@ -56,6 +56,40 @@ const UpdatesPage = () => { return (