Skip to content

Commit b5cf389

Browse files
authored
Merge pull request #14529 from imbarty/patch-2
fix: Correct invalid duration-25 value in TailwindCSS classes
2 parents a5af4f3 + e9c143e commit b5cf389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DataTable/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const DataTable = <TData, TValue>({
137137
</div>
138138
<Table {...props}>
139139
<TableBody
140-
className={`duration-25 transition-opacity ${
140+
className={`duration-75 transition-opacity ${
141141
isVisible ? "opacity-100" : "opacity-0"
142142
}`}
143143
>

0 commit comments

Comments
 (0)