fix: update codes

This commit is contained in:
qinluhe 2024-06-27 14:00:37 +08:00
parent 3f05ac8f62
commit e27dddef61
2 changed files with 2 additions and 1 deletions

View File

@ -140,6 +140,7 @@ const start = () => {
},
});
logger.info(`Server is running on port 3000`);
logger.info(`Base URL: ${process.env.AF_BASE_URL}`);
} catch (err) {
logger.error(err);
process.exit(1);

View File

@ -22,7 +22,7 @@ function ViewCover({ coverValue, coverType }: { coverValue?: string; coverType?:
}
return (
<div className={'relative flex h-[255px] w-full max-sm:h-[180px]'}>
<div className={'relative flex h-[198px] w-full max-sm:h-[180px]'}>
{coverType === 'color' && renderCoverColor(coverValue)}
{(coverType === 'custom' || coverType === 'built_in') && renderCoverImage(coverValue)}
</div>