Skip to content
Draft
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
24,326 changes: 24,326 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

Binary file modified public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-chrome-256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 1 addition & 7 deletions src/Components/DiscordMock/MessageClump/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,7 @@ type RenderedMessageProps = {
* Memoized message which transforms its content via `useMemo`
*/
const RenderedMessage: React.FC<RenderedMessageProps> = React.memo(
({
message,
sender,
genericOnReact,
genericOnUnreact,
skeletonAmount,
}) => {
({ message, sender, genericOnReact, genericOnUnreact, skeletonAmount }) => {
const { transform, context } = useContext(TransformMessageContext);
const { result, mentions } = useMemo(
() => transform(message, sender, context),
Expand Down
5 changes: 1 addition & 4 deletions src/Components/Skeleton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,7 @@ const Multiline: React.FC<MultilineProps> = ({
* Skeleton that automatically switches colors according to the theme
*/
const Auto: React.FC<SkeletonProps> = ({ className = "", ...rest }) => (
<Skeleton
className={classNames("skeleton-auto", className)}
{...rest}
/>
<Skeleton className={classNames("skeleton-auto", className)} {...rest} />
);

export default attach(Skeleton, { Text, Custom, Multiline, Auto });
1 change: 1 addition & 0 deletions src/Dynamic/AppRoot/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const tabs = {
emoji: tab({
icon: emojiSvg,
name: "Emoji Manager",
contentClass: "no-scroll",
}),
queue: tab({
icon: musicSvg,
Expand Down
Loading