Skip to content

Commit

Permalink
Merge pull request #504
Browse files Browse the repository at this point in the history
chore/trigger-release
  • Loading branch information
Nelfimov authored Sep 29, 2023
2 parents 60b2fd7 + 9ae0c92 commit a374450
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
5 changes: 2 additions & 3 deletions ui-proto/autocomplete/src/autocomplete.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Autocomplete } from '@atls-ui-parts/autocomplete'
import React from 'react'
import { useState } from 'react'

import { Autocomplete } from '@atls-ui-parts/autocomplete'

export default {
title: 'Components/Autocomplete',
}
Expand All @@ -14,7 +13,7 @@ export const Base = () => {

return (
<div>
<Autocomplete value={value} options={options} onChange={setValue} />
<Autocomplete options={options} value={value} onChange={setValue}/>
</div>
)
}
7 changes: 3 additions & 4 deletions ui-proto/avatar/src/avatar.component.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
import { Root } from '@radix-ui/react-avatar'

import { styled } from '@atls-ui-proto/core'
import { theme } from '@atls-ui-proto/core'
import { Root } from '@radix-ui/react-avatar'

export const Avatar = styled(Root, {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
overflow: 'hidden',
verticalAlign: 'middle',
userSelect: 'none',
overflow: 'hidden',
boxSizing: 'border-box',
userSelect: 'none',
backgroundColor: theme.colors.black,

variants: {
Expand Down
13 changes: 6 additions & 7 deletions ui/design/server.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
const express = require('express')
const express = require('express');

const app = express()
const port = 3000

app.use(express.static('dist'))
const app = express();
const port = 3000;

app.use(express.static('dist'));
app.listen(port, () => {
// eslint-disable-next-line no-console
console.log(`Listening on port ${port}`)
})
console.log(`Listening on port ${port}`);
});

0 comments on commit a374450

Please sign in to comment.