Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
apalchys committed Nov 19, 2023
1 parent 9eb399c commit 994bd74
Show file tree
Hide file tree
Showing 5 changed files with 2,564 additions and 3,526 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion client/src/components/GithubAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type Props = {
};

export function GithubAvatar({ githubId, size, style }: Props) {
if (!githubId || githubId.startsWith('obfuscated-')) {
if (!githubId || githubId.startsWith('gdpr-')) {
return <Avatar size={size} style={style} />;
}
return <Avatar src={`${CDN_AVATARS_URL}/${githubId}.png?size=${size * 2}`} size={size} style={style} />;
Expand Down
5 changes: 2 additions & 3 deletions client/src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import * as React from 'react';
import App from 'next/app';
import Head from 'next/head';

import 'antd/dist/reset.css';
import '../styles/main.css';
import { initializeFeatures } from 'services/features';
import { Analytics } from './analytics';
import { Analytics } from '../components/Analytics';
import '../styles/main.css';

class RsSchoolApp extends App {
render() {
Expand Down
Loading

0 comments on commit 994bd74

Please sign in to comment.