attio 0.0.1-experimental.20250925 → 0.0.1-experimental.20250926

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import {Column, TextBlock, useAsyncCache} from "attio/client"
1
+ import {TextBlock, useAsyncCache} from "attio/client"
2
2
 
3
3
  import getStoicQuote from "./get-stoic-quote.server"
4
4
 
@@ -13,9 +13,9 @@ export function StoicQuote({recordId}: {recordId: string}) {
13
13
  // async fn parameter(s)
14
14
 
15
15
  return (
16
- <Column>
16
+ <>
17
17
  <TextBlock align="center">{quote.text}</TextBlock>
18
18
  <TextBlock align="right">– {quote.author}</TextBlock>
19
- </Column>
19
+ </>
20
20
  )
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attio",
3
- "version": "0.0.1-experimental.20250925",
3
+ "version": "0.0.1-experimental.20250926",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib",