Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ldanilek committed Sep 1, 2023
1 parent 5ad3c32 commit 8f67c97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion convex/players.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { v } from 'convex/values';
import { Doc, Id } from './_generated/dataModel';
import { DatabaseReader, DatabaseWriter, MutationCtx, internalMutation, mutation, query } from './_generated/server';
import { DatabaseReader, MutationCtx, internalMutation, mutation, query } from './_generated/server';
import { enqueueAgentWake } from './engine';
import { HEARTBEAT_PERIOD, WORLD_IDLE_THRESHOLD } from './config';
import { Characters, Player, Pose } from './schema';
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import helpImg from "../assets/help.svg";
import { useEffect, useState } from 'react';
import { useMutation, useQuery } from 'convex/react';
import { api } from '../convex/_generated/api';
import { MAX_HUMANS, WAITLIST_DEADLINE } from '../convex/waitlist_constants.ts';
import { MAX_HUMANS } from '../convex/waitlist_constants.ts';

const modalStyles = {
overlay: {
Expand Down

0 comments on commit 8f67c97

Please sign in to comment.