Skip to content

Commit

Permalink
Merge pull request #260 from omnisat/dev
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
hathbanger authored Nov 14, 2024
2 parents 802b636 + c71ec5f commit d12e0a3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 23 deletions.
3 changes: 1 addition & 2 deletions apps/demo.lasereyes.build/components/WalletCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,7 @@ const WalletCard = ({
try {
const inscriptionTxId = await inscribe(
Buffer.from(inscriptionText).toString('base64'),
'text/plain',
network
'text/plain'
)
toast.success(
<span className={'flex flex-col gap-1 items-center justify-center'}>
Expand Down
7 changes: 4 additions & 3 deletions packages/lasereyes-react/lib/icons/lasereyes-logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ const LaserEyesLogo = ({
color = 'green',
width = 135,
height,
...props
className = '',
}: {
color?: string
width?: number
height?: number
className?: string
}) => {
const aspectRatio = 135 / 56
const calculatedHeight = height || width! / aspectRatio
Expand All @@ -20,7 +21,7 @@ const LaserEyesLogo = ({
viewBox="0 0 135 56"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
className={className}
>
<rect
width={7.89036}
Expand Down Expand Up @@ -249,7 +250,7 @@ const LaserEyesLogo = ({
viewBox="0 0 135 56"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
className={className}
>
<rect
width={7.89036}
Expand Down
2 changes: 1 addition & 1 deletion packages/lasereyes-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes-react",
"private": false,
"version": "0.0.37-rc.1",
"version": "0.0.37-rc.3",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/lasereyes-react/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { resolve } from 'path'
import { defineConfig } from 'vite'
import { defineConfig, UserConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import dts from 'vite-plugin-dts'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
react() as UserConfig["plugins"],
dts({
insertTypesEntry: true, // Adds an entry point for types, ensuring `types` is correctly referenced in package.json
tsconfigPath: resolve(__dirname, './tsconfig.build.json'),
Expand Down
2 changes: 1 addition & 1 deletion packages/lasereyes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"url": "https://github.com/omnisat/lasereyes-mono.git"
},
"private": false,
"version": "0.0.120-rc.2",
"version": "0.0.120-rc.4",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
15 changes: 1 addition & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d12e0a3

Please sign in to comment.