Skip to content

Commit

Permalink
fixed import in [story_id]/page.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
rgerum committed Jan 3, 2024
1 parent 07b633f commit cfdc537
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/app/(stories)/story/[story_id]/page.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import React from "react";

import { sql } from "lib/db";

import StoryWrapper from "./story_wrapper";
import { notFound } from "next/navigation";
import { sql } from "lib/db";
import getUserId from "lib/getUserId";
import { get_localisation_dict } from "lib/get_localisation";
import StoryWrapper from "./story_wrapper";
import { get_story } from "./getStory";

async function get_story_meta(course_id) {
const course_query = await sql`SELECT
Expand Down

0 comments on commit cfdc537

Please sign in to comment.