Commit 5ce51fea authored by Kovo121's avatar Kovo121
Browse files

fix: remove png

parent 7190c6cb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ const MyIcon: FC<MyIconProps> = ({ userId, alt, fun }) => {
      {isFetching ? (
        <Skeleton variant="circular" width={40} height={40} />
      ) : (
        <Avatar alt={alt} src={`data:image/png;base64,${icon}`} />
        <Avatar alt={alt} src={icon} />
      )}
    </IconButton>
  );
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ const MyIcon: FC<MyIconProps> = ({ userId, alt }) => {
      {isFetching ? (
        <Skeleton variant="circular" width={40} height={40} />
      ) : (
        <Avatar alt={alt} src={`data:image/png;base64,${icon}`} />
        <Avatar alt={alt} src={icon} />
      )}
    </>
  );
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ function SwolematesPage() {
    });
    if (!match.isSuccessful) {
      enqueueSnackbar(match.errorMessage, { variant: 'error' });
    } else if (match) {
    } else if (match.isMatch) {
      setFlash(true);
      await sleep(1000);
      setFlash(false);