nicolium: this shouldn't land there

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-03-06 16:31:05 +01:00
parent db53daff99
commit 0d88895fd4
5 changed files with 0 additions and 14 deletions

View File

@ -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",

View File

@ -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) {

View File

@ -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,

View File

@ -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';