Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Jul 12, 2024
1 parent ecd5f23 commit 51a18bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const Tab = ({
zIndex={1}
onClick={() => onClick(id)}
>
{icon} <Box align='left' pl='0.5em'>
{icon} <Box textAlign='left' pl='0.5em'>
<Box fontSize="sm">{name || type}</Box>
<Box fontSize="xxs">{name ? type : ''} {id}</Box>
</Box>
Expand Down Expand Up @@ -168,7 +168,7 @@ export function Content() {

const [layout, setLayout] = useQueryStore('layout', 'c');

const [spaceId, setSpaceId] = useState();
const [spaceId, setSpaceId] = useState<any>();
const [containerId, setContainerId] = useState();

return (
Expand All @@ -177,7 +177,7 @@ export function Content() {
"nav main"`}
gridTemplateRows={'3em 1fr'}
gridTemplateColumns={'3em 1fr'}
h='100%' w="100%" position="fixed" l="0%" t="0%"
h='100%' w="100%" position="fixed" left="0%" top="0%"
color='blackAlpha.700'
fontWeight='bold'
>
Expand Down Expand Up @@ -209,7 +209,7 @@ export function Content() {
onClick={id => setSpaceId(id)} isActive={spaceId === 5173}
/>
</Box>
<Box flex='1' align="right">
<Box flex='1' textAlign="right">
<Tab
id={452} name='allowUsersInsertSafe' type='Rule' icon='🔥'
onClick={id => setSpaceId(id)} isActive={spaceId === 452}
Expand Down
2 changes: 1 addition & 1 deletion src/connection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Box, Button, Card, CardBody, CardHeader, Code, FormControl, FormLabel, HStack, Heading, Input, SimpleGrid } from "@chakra-ui/react";
import { AutoGuest } from "@deep-foundation/deepcase/imports/auto-guest";
import { AutoGuest } from "@deep-foundation/perception-imports/imports/auto-guest";
import { useDeep } from "@deep-foundation/deeplinks/imports/client";
import { useEffect, useState } from "react";
import { useTranslation } from "next-i18next";
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"downlevelIteration": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"noImplicitAny": false,
"isolatedModules": true,
Expand Down

0 comments on commit 51a18bf

Please sign in to comment.