Skip to content

Commit

Permalink
change for pull
Browse files Browse the repository at this point in the history
  • Loading branch information
levil664 committed Sep 7, 2023
1 parent bdcce75 commit 241983a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/schools/domains/circle/components/map/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ const points = [
const MapComponent = () => {
const [form] = Form.useForm()

const style = {
const style: React.CSSProperties = {
position: 'relative',
width: '100%',
height: '600px',
} as React.CSSProperties
}

return (
<YMaps>
Expand Down
3 changes: 1 addition & 2 deletions apps/schools/pages/circle/[id]/change/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import React from "react";
import AddressForm from "@domains/circle/components/addressForm";

const Index = () => {
return (
<div>
<AddressForm/>

</div>
);
};
Expand Down

0 comments on commit 241983a

Please sign in to comment.