remove extra referencers

This commit is contained in:
yggverse 2024-11-08 05:03:02 +02:00
parent 1e5d5a46cf
commit 6d7277d831
10 changed files with 18 additions and 18 deletions

View file

@ -185,7 +185,7 @@ impl Meta {
// Tools
pub fn migrate(tx: &Transaction) -> Result<(), String> {
// Migrate self components
if let Err(e) = Database::init(&tx) {
if let Err(e) = Database::init(tx) {
return Err(e.to_string());
}

View file

@ -174,7 +174,7 @@ impl Navigation {
// Tools
pub fn migrate(tx: &Transaction) -> Result<(), String> {
// Migrate self components
if let Err(e) = Database::init(&tx) {
if let Err(e) = Database::init(tx) {
return Err(e.to_string());
}

View file

@ -219,7 +219,7 @@ impl Widget {
// Tools
pub fn migrate(tx: &Transaction) -> Result<(), String> {
// Migrate self components
if let Err(e) = Database::init(&tx) {
if let Err(e) = Database::init(tx) {
return Err(e.to_string());
}

View file

@ -138,7 +138,7 @@ impl Widget {
// Tools
pub fn migrate(tx: &Transaction) -> Result<(), String> {
// Migrate self components
if let Err(e) = Database::init(&tx) {
if let Err(e) = Database::init(tx) {
return Err(e.to_string());
}