Skip to content
Merged
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
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ NEXT_PUBLIC_CLOUDINARY_API_SECRET=your_cloudinary_api_secret
NEXT_PUBLIC_CLOUDINARY_URL=your_cloudinary_url
NEXT_PUBLIC_JITSI_DOMAIN=https://meet.jit.si
# NODE_ENV=production
NEXT_PUBLIC_SOCKET_URL=https://dnb-backend-api.onrender.com
DNB_API_URL=https://dnb-backend-api.onrender.com
NEXT_PUBLIC_API_URL=https://dnb-backend-api.onrender.com
NEXT_PUBLIC_STELLAR_NETWORK=testnet
48 changes: 0 additions & 48 deletions components/DebugAuthLogs.jsx

This file was deleted.

2 changes: 2 additions & 0 deletions components/atoms/dashboard/Notybell.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// LIVE: rendered by components/molecules/dashboard/nav-header.jsx.
// Placeholder data. See components/molecules/dashboard/Notybell.jsx for the SSE-backed bell.
// components/atoms/dashboard/Notybell.jsx
"use client";

Expand Down
3 changes: 3 additions & 0 deletions components/molecules/dashboard/Notybell.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// NOT YET WIRED UP: SSE-backed bell built on hooks/useNotificationSSE.js.
// The bell currently rendered in the nav is components/atoms/dashboard/Notybell.jsx.
// Retained deliberately - this is the intended replacement, not dead code.
"use client";

import React, { useState } from "react";
Expand Down
2 changes: 1 addition & 1 deletion components/molecules/errors/NotFound.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const NotFoundComp = ({
if (window.history.length > 2) {
router.back();
} else {
router.push(isDashboard ? "/dashboard/classes" : "/login");
router.push(isDashboard ? "/dashboard" : "/login");
}
};

Expand Down
1 change: 0 additions & 1 deletion components/organisms/reels/ReelCard.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use client";

"use client";

import { useEffect, useMemo, useRef, useState } from "react";
import {
Expand Down
1 change: 0 additions & 1 deletion components/organisms/reels/ReelFeed.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use client";

"use client";

import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import Button from "@/components/atoms/form/Button";
Expand Down
Loading
Loading