Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports[`Avatar component tests Size: custom, shape: circle, type: icon, with cu
},
{
"height": 102,
"width": 102,
"width": 101,
},
{
"backgroundColor": "#44e858",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/makeStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
export const makeStyles =
<T extends StylesObject>(createStyles: CreateStyles<T>): (() => T) =>
() => {
const fonts = useFonts();
const fonts = useFonts()
const theme = useTheme()
const themeValues = useMemo(() => {
switch (theme) {
Expand Down
Loading