Skip to content

Commit 2881646

Browse files
committed
fix: code review
1 parent 4c6db0e commit 2881646

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/[lang]/leaderboards/GithubUserList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default function GithubUserList({t, initialData}: Props): ReactElement {
104104
{
105105
id: 'tierName',
106106
headerClassName: 'w-3/12 py-[12px]',
107-
cellClassName: 'h-[37px] text-start w-3/12 h-[50px] py-[8px]',
107+
cellClassName: 'text-start w-3/12 h-[50px] py-[8px]',
108108
header: () => (
109109
<H5 fontWeight="semibold" className="text-start text-basic">
110110
{t.tier}
@@ -115,7 +115,7 @@ export default function GithubUserList({t, initialData}: Props): ReactElement {
115115
{
116116
id: 'score',
117117
headerClassName: 'w-3/12 py-[12px]',
118-
cellClassName: 'h-[37px] text-start w-3/12 h-[50px] py-[8px]',
118+
cellClassName: 'text-start w-3/12 h-[50px] py-[8px]',
119119
header: () => (
120120
<H5 fontWeight="semibold" className="text-start text-basic">
121121
{t.score}

app/[lang]/stats/[login]/SearchTextInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export default function SearchTextInput({
111111
disabled={isLoading || !login}
112112
aria-label={
113113
isLoading
114-
? t.search || 'Search'
114+
? `${t.search ?? 'Search'}…`
115115
: t.search || 'Search'
116116
}
117117
className={clsx(

0 commit comments

Comments
 (0)