nicolium: this shouldn't land there
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
@ -71,7 +71,6 @@
|
||||
"@uidotdev/usehooks": "^2.4.1",
|
||||
"@use-gesture/react": "^10.3.1",
|
||||
"@yornaath/batshit": "^0.14.0",
|
||||
"abortcontroller-polyfill": "^1.7.8",
|
||||
"autoprefixer": "^10.4.27",
|
||||
"blurhash": "^2.0.5",
|
||||
"bowser": "^2.14.1",
|
||||
|
||||
@ -112,7 +112,6 @@ const fetchMeSuccess =
|
||||
if (match) {
|
||||
try {
|
||||
const frontendConfig = JSON.parse(decodeURIComponent(match[1]));
|
||||
console.log(frontendConfig);
|
||||
useSettingsStore.getState().actions.loadUserSettings(frontendConfig);
|
||||
return frontendConfig;
|
||||
} catch (error) {
|
||||
|
||||
@ -110,7 +110,6 @@ const TimelineGap: React.FC<ITimelineGap> = ({ gap, onFillGap, firstEntry }) =>
|
||||
};
|
||||
|
||||
const renderTimeDistance = () => {
|
||||
console.log(gap);
|
||||
if (!gap.minDate) return null;
|
||||
|
||||
const maxDate = gap.maxIdDate ? new Date(gap.maxIdDate) : new Date();
|
||||
@ -397,12 +396,10 @@ const Timeline: React.FC<ITimeline> = ({
|
||||
} = query;
|
||||
|
||||
const handleMoveUp = (index: number) => {
|
||||
console.log(index);
|
||||
selectChild(index - 1, node, document.getElementById('status-list') ?? undefined);
|
||||
};
|
||||
|
||||
const handleMoveDown = (index: number) => {
|
||||
console.log(index);
|
||||
selectChild(
|
||||
index + 1,
|
||||
node,
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
// TOOD Verify if any of the lesser-known browsers actually need those.
|
||||
import 'abortcontroller-polyfill/dist/polyfill-patch-fetch';
|
||||
import 'intersection-observer';
|
||||
import { install as installResizeObserver } from 'resize-observer';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user