Skip to content

Commit

Permalink
Fix og images and remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
0xi4o committed Aug 7, 2024
1 parent dae1615 commit 12d2ebe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const meta: MetaFunction = () => [
},
{
property: 'og:image',
content: '/images/aurelius_open_graph.png',
content: '/images/og.png',
},
{
name: 'theme-color',
Expand Down Expand Up @@ -130,7 +130,7 @@ export const meta: MetaFunction = () => [
},
{
name: 'twitter:image',
content: 'https://aurelius.ink/images/og.png',
content: '/images/og.png',
},
{
name: 'viewport',
Expand Down
5 changes: 2 additions & 3 deletions app/routes/editor.$effort.$slug.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useCallback, useEffect, useRef, useState } from 'react'
import { useCallback, useState } from 'react'

import { LinksFunction, MetaFunction } from '@remix-run/node'
import {
Expand All @@ -13,8 +13,7 @@ import * as S from '@effect/schema/Schema'
import { ExtractRow, NonEmptyString1000, Query } from '@evolu/common'
import invariant from 'tiny-invariant'
import Editor from '~/components/common/editor'
import { useAutoSave, useKeyboardShortcuts } from '~/lib/hooks'
import { EditorData, EditorShortcuts } from '~/lib/types'
import { EditorData } from '~/lib/types'
import { Arls, TableQueryBuilder, arls } from '~/services/arls'
import { EffortsTable } from '~/services/evolu/database'
import {
Expand Down

0 comments on commit 12d2ebe

Please sign in to comment.